Add simple topbar
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Late Night Defender 2024-10-29 00:24:50 +07:00
parent af93df305f
commit 0010952643

View file

@ -22,6 +22,15 @@
z-index: 10;
}
.simple-topbar {
position: fixed;
width: 100%;
height: 1.2cm;
top: 0px;
left: 0px;
z-index: 10;
}
.topbar-group {
display: flex;
justify-content: space-between;
@ -71,6 +80,12 @@
color: #000000;
}
.simple-topbar {
background-color: rgba(255, 255, 255, 1);
border: 1px solid rgba(224, 224, 224, 1);
color: #000000;
}
}
@media (prefers-color-scheme: dark) {
@ -88,4 +103,10 @@
border: 1px solid #1f1f1f;
color: #ffffff;
}
.simple-topbar {
background-color: #303030;
border: 1px solid #1f1f1f;
color: #ffffff;
}
}