mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 03:22:11 +00:00
25 lines
No EOL
495 B
Text
25 lines
No EOL
495 B
Text
// Copyright (C) 2017-2024 Smart code 203358507
|
|
|
|
@import (reference) '~stremio/common/screen-sizes.less';
|
|
|
|
.list {
|
|
flex: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
width: 20rem;
|
|
padding-right: 1rem;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
@media only screen and (max-width: @minimum) and (orientation: portrait) {
|
|
.list {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: @small) and (orientation: landscape) {
|
|
.list {
|
|
width: 15rem;
|
|
}
|
|
} |