merge login

This commit is contained in:
Vassshhh
2025-06-13 19:50:13 +07:00
parent 7d4e1ce73e
commit d676f16f22
5 changed files with 148 additions and 15 deletions

View File

@@ -143,4 +143,52 @@
.mobileText {
display: block;
}
}
.dashboardHeader {
position: relative;
display: flex;
align-items: center;
gap: 16px;
padding: 20px;
background-color: #075e54;
border-bottom: 1px solid #ddd;
}
.loginButton {
position: absolute;
top: 10px;
right: 10px;
background-color: #0b7366;
color: white;
padding: 8px 18px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
font-size: 12px;
transition: background-color 0.3s ease;
border: none;
}
.loginButton:hover {
background-color: #0f9b8a;
}
.logoutButton {
position: absolute;
top: 10px;
right: 10px;
background-color: #ad1212;
color: white;
padding: 8px 14px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
font-size: 12px;
transition: background-color 0.3s ease;
border: none;
}
.logoutButton:hover {
background-color: #cb0f0f;
}