52 lines
791 B
SCSS
52 lines
791 B
SCSS
.adminBar {
|
|
z-index: 10;
|
|
width: 100%;
|
|
background-color: rgba(var(--foreground-rgb), 0.075);
|
|
padding: calc(var(--base) * 0.5) 0;
|
|
display: none;
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
transition: opacity 150ms linear;
|
|
}
|
|
|
|
.payloadAdminBar {
|
|
color: rgb(var(--foreground-rgb)) !important;
|
|
}
|
|
|
|
.show {
|
|
display: block;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
|
|
.controls {
|
|
& > *:not(:last-child) {
|
|
margin-right: calc(var(--base) * 0.5) !important;
|
|
}
|
|
}
|
|
|
|
.user {
|
|
margin-right: calc(var(--base) * 0.5) !important;
|
|
}
|
|
|
|
.logo {
|
|
margin-right: calc(var(--base) * 0.5) !important;
|
|
}
|
|
|
|
.innerLogo {
|
|
width: 100%;
|
|
}
|
|
|
|
.container {
|
|
position: relative;
|
|
}
|
|
|
|
.hr {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
background-color: rbg(var(--background-rgb));
|
|
height: 2px;
|
|
}
|