mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
18 lines
253 B
SCSS
18 lines
253 B
SCSS
![]() |
.serverInfo {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
gap: 1em;
|
||
|
padding: 1em;
|
||
|
|
||
|
> *:nth-child(odd) {
|
||
|
flex: 1 0 20%;
|
||
|
min-width: 7.5em;
|
||
|
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
> *:nth-child(even) {
|
||
|
flex: 1 0 70%;
|
||
|
}
|
||
|
}
|