mirror of
https://github.com/owncast/owncast.git
synced 2025-01-01 22:27:39 +03:00
13 lines
130 B
SCSS
13 lines
130 B
SCSS
|
.root {
|
||
|
background-color: var(--gray-700);
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
@media (min-width: 768px) {
|
||
|
.root {
|
||
|
display: flex;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|