mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 17:15:48 +00:00
Added supports check
This commit is contained in:
parent
91ed45625b
commit
5c316f4a33
2 changed files with 8 additions and 2 deletions
|
|
@ -9,7 +9,10 @@
|
|||
border-radius: var(--border-radius);
|
||||
border: 0.15rem solid transparent;
|
||||
transition: border-color 0.1s ease-out;
|
||||
scroll-margin-block-start: 2px;
|
||||
|
||||
@supports (scroll-margin-block-start: 2px) {
|
||||
scroll-margin-block-start: 2px;
|
||||
}
|
||||
|
||||
.heading {
|
||||
flex: none;
|
||||
|
|
|
|||
|
|
@ -10,7 +10,10 @@
|
|||
width: 20rem;
|
||||
padding: 0 1rem;
|
||||
overflow-y: auto;
|
||||
scroll-padding-block-start: 2px;
|
||||
|
||||
@supports (scroll-padding-block-start: 2px) {
|
||||
scroll-padding-block-start: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: @small) and (orientation: portrait) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue