diff options
Diffstat (limited to 'apps/Player/styles/_player.scss')
-rw-r--r-- | apps/Player/styles/_player.scss | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/apps/Player/styles/_player.scss b/apps/Player/styles/_player.scss index abc6582..7c74775 100644 --- a/apps/Player/styles/_player.scss +++ b/apps/Player/styles/_player.scss @@ -17,9 +17,13 @@ & > div:nth-of-type(2) { - overflow-y: scroll; + overflow-y: auto; overflow-x: hidden; - -webkit-overflow-scrolling: touch; + + @media (pointer: coarse) { + overflow-y: scroll; + -webkit-overflow-scrolling: touch; + } } & > div:nth-of-type(2), @@ -27,7 +31,7 @@ width: 48%; position: absolute; top: 0; - bottom: 2em; + bottom: 0; background-color: var(--color-glass); transition: .3s transform; |