diff options
author | 2021-10-02 18:59:08 +0200 | |
---|---|---|
committer | 2021-10-02 18:59:08 +0200 | |
commit | 49652bec567ddb75fb6041c2a34ddb37e9694f08 (patch) | |
tree | 0a3e35d9a0788787934d1b124a620bf5246e81bf /apps/Player/styles/_player.scss | |
parent | 79bdb88a5fc099b5871a83d18eadf9b0448b41d1 (diff) | |
download | my_apps-49652bec567ddb75fb6041c2a34ddb37e9694f08.tar.gz my_apps-49652bec567ddb75fb6041c2a34ddb37e9694f08.tar.bz2 my_apps-49652bec567ddb75fb6041c2a34ddb37e9694f08.zip |
small styling fixes
Diffstat (limited to 'apps/Player/styles/_player.scss')
-rw-r--r-- | apps/Player/styles/_player.scss | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/apps/Player/styles/_player.scss b/apps/Player/styles/_player.scss index 0d73b59..abc6582 100644 --- a/apps/Player/styles/_player.scss +++ b/apps/Player/styles/_player.scss @@ -1,11 +1,10 @@ .player { - height: 100%; width: 100%; position: relative; background-color: #000; & > div:nth-of-type(1) { - height: calc(100% - 2em); + height: 100%; width: 100%; padding-bottom: .5em; @@ -18,7 +17,9 @@ & > div:nth-of-type(2) { - overflow-y: auto; + overflow-y: scroll; + overflow-x: hidden; + -webkit-overflow-scrolling: touch; } & > div:nth-of-type(2), @@ -32,6 +33,7 @@ @media(max-width: 40em) { width: 96%; + bottom: 0; } ul { @@ -50,7 +52,7 @@ & > span:nth-of-type(2) { flex-grow: 1; - overflow-x: hidden; + overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } @@ -118,6 +120,7 @@ & > div:first-of-type { overflow-y: auto; + overflow-x: hidden; padding: 1em; height: 100%; } |