mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-07 06:08:54 +00:00
76 lines
1.2 KiB
CSS
76 lines
1.2 KiB
CSS
.base-header {
|
|
z-index: 10;
|
|
width: 100vw;
|
|
display: flex;
|
|
height: var(--header-height);
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-shrink: 0;
|
|
position: sticky;
|
|
top: 0;
|
|
left: 0;
|
|
border-radius: 0rem !important;
|
|
}
|
|
@media only screen and (min-width: 768px) {
|
|
.base-header {
|
|
height: var(--header-height);
|
|
}
|
|
}
|
|
|
|
.header-title {
|
|
color: var(--Rotkehlchen-orange-default);
|
|
}
|
|
.header-icon-feather {
|
|
height: 35px;
|
|
}
|
|
.header-icon-menu {
|
|
cursor: pointer;
|
|
height: 45px;
|
|
}
|
|
|
|
.header-icon {
|
|
margin: 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
@media only screen and (min-width: 768px) {
|
|
.header-icon {
|
|
margin: 40px;
|
|
}
|
|
}
|
|
|
|
.drawer-list {
|
|
background-color: var(--dark-blue);
|
|
min-height: 100vh;
|
|
min-width: 13rem;
|
|
}
|
|
|
|
.drawer-list-item {
|
|
color: white;
|
|
}
|
|
|
|
.drawer-list-item-button {
|
|
height: 10vh;
|
|
}
|
|
.drawer-list-item-button:hover {
|
|
background-color: var(--dark-blue-hover);
|
|
}
|
|
|
|
.drawer-list {
|
|
background-color: #2f325e;
|
|
min-height: 100vh;
|
|
min-width: 13rem;
|
|
}
|
|
|
|
.drawer-list-item {
|
|
color: white;
|
|
}
|
|
|
|
.drawer-list-item-button {
|
|
height: 10vh;
|
|
}
|
|
.drawer-list-item-button:hover {
|
|
background-color: #555b90;
|
|
}
|