mirror of
https://github.com/owncast/owncast.git
synced 2024-11-26 06:46:01 +03:00
27 lines
589 B
SCSS
27 lines
589 B
SCSS
.statusbar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: var(--status-bar-height);
|
|
width: 100%;
|
|
max-height: 4vh;
|
|
padding: var(--content-padding);
|
|
color: var(--theme-color-components-video-status-bar-foreground);
|
|
background-color: var(--theme-color-components-video-status-bar-background);
|
|
font-family: var(--theme-text-display-font-family);
|
|
font-size: 11px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.onlineMessage {
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.viewerCount {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.viewerIcon {
|
|
display: inline-block;
|
|
margin-right: 0.5rem;
|
|
}
|