add login and sign up button in drawer

This commit is contained in:
Niklas 2025-06-27 13:15:06 +02:00 committed by BlankAccountsUsername
parent 9c46bc7321
commit 96ff234b7f
4 changed files with 62 additions and 46 deletions

View file

@ -1,9 +1,3 @@
:root {
--Rotkehlchen-gray: #e7ecf2;
--Rotkehlchen-brown1: #a28d7a;
--Rotkehlchen-orange-default: #e79a0e;
}
.base-header {
z-index: 10;
width: 100vw;
@ -12,12 +6,11 @@
justify-content: space-between;
align-items: center;
flex-shrink: 0;
background: hsla(244, 70%, 13%, 0.71);
backdrop-filter: blur(8px);
position: fixed;
top: 0;
left: 0;
z-index: 1000;
border-radius: 0rem !important;
}
@media only screen and (min-width: 768px) {
.base-header {
@ -60,7 +53,7 @@
}
.drawer-list {
background-color: #12103d;
background-color: var(--dark-blue);
min-height: 100vh;
min-width: 13rem;
}
@ -73,5 +66,5 @@
height: 10vh;
}
.drawer-list-item-button:hover {
background-color: #232451;
background-color: var(--dark-blue-hover);
}