This commit is contained in:
AJ
2024-06-21 13:53:07 +02:00
parent ff7f4e1177
commit bcca19116d

View File

@@ -34,10 +34,11 @@ LoginFrame::LoginFrame(QWidget* parent)
id_m->setObjectName("ID"); id_m->setObjectName("ID");
id_m->setStyleSheet(R"( id_m->setStyleSheet(R"(
#ID{ #ID{
color: #93F8FF; color: #333333;
font-size: 25px; font-size: 25px;
font-weight: bold; font-weight: bold;
border: none; border: none;
background-color: #444444;
} }
)"); )");
id_m->show(); id_m->show();
@@ -47,10 +48,11 @@ LoginFrame::LoginFrame(QWidget* parent)
password_m->setObjectName("Password"); password_m->setObjectName("Password");
password_m->setStyleSheet(R"( password_m->setStyleSheet(R"(
#Password{ #Password{
color: #93F8FF; color: #333333;
font-size: 25px; font-size: 25px;
font-weight: bold; font-weight: bold;
border: none; border: none;
background-color: #444444;
} }
)"); )");
password_m->show(); password_m->show();