mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 01:43:43 +00:00
38 lines
611 B
SCSS
38 lines
611 B
SCSS
.overview {
|
|
grid-area: overview;
|
|
font-size: $inner-section-text-size;
|
|
display: flex;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.isOffline {
|
|
.info {
|
|
opacity: $opacity-disabled;
|
|
}
|
|
&::after {
|
|
content: 'Disconnected';
|
|
position: absolute;
|
|
padding-inline: 0.5rem;
|
|
bottom: 0.5rem;
|
|
right: 0.5rem;
|
|
background-color: $red-700;
|
|
border-radius: 2px;
|
|
font-size: calc(1rem - 2px);
|
|
z-index: $zindex-sudo;
|
|
}
|
|
}
|
|
|
|
.nav {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.info {
|
|
flex: 1;
|
|
padding-left: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|