merge login
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user