diff options
author | RaindropsSys <raindrops@equestria.dev> | 2023-10-27 22:29:56 +0200 |
---|---|---|
committer | RaindropsSys <raindrops@equestria.dev> | 2023-10-27 22:29:56 +0200 |
commit | 4d4308c46d4f7801c657cc79d2243e1a81831334 (patch) | |
tree | a2e392e0af92b9a3ca3d1b5afb841640276e2294 /assets/styles.css | |
parent | 9f9d66afebc59c6c265c4424f7b8fb36d8876541 (diff) | |
download | mist-4d4308c46d4f7801c657cc79d2243e1a81831334.tar.gz mist-4d4308c46d4f7801c657cc79d2243e1a81831334.tar.bz2 mist-4d4308c46d4f7801c657cc79d2243e1a81831334.zip |
Updated 32 files, added 279 files, deleted 3 files and renamed 14 files (automated)
Diffstat (limited to 'assets/styles.css')
-rw-r--r-- | assets/styles.css | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/assets/styles.css b/assets/styles.css index 100ea0d..a409a09 100644 --- a/assets/styles.css +++ b/assets/styles.css @@ -169,7 +169,7 @@ iframe { #navigation { position: fixed !important; top: unset !important; - bottom: 0 !important; + bottom: var(--android-navigation-bar) !important; left: 0 !important; right: 0 !important; width: 100vw !important; @@ -180,7 +180,7 @@ iframe { iframe#player { position: fixed !important; top: unset !important; - bottom: 48px !important; + bottom: calc(48px + var(--android-navigation-bar)) !important; left: 0 !important; right: 0 !important; width: 100vw !important; @@ -245,12 +245,12 @@ iframe { } #ui, #lyrics-page { - top: 0 !important; - bottom: 97px !important; + top: var(--android-status-bar) !important; + bottom: calc(97px + var(--android-navigation-bar)) !important; left: 0 !important; right: 0 !important; width: 100vw !important; - height: calc(100vh - 97px) !important; + height: calc(100vh - 97px - var(--android-navigation-bar) - var(--android-status-bar)) !important; } iframe#lyrics-page { @@ -445,4 +445,9 @@ iframe { body.web { background-color: white; +} + +.modal-dialog { + margin-top: calc(1.75rem + var(--android-status-bar)); + margin-bottom: calc(1.75rem + var(--android-navigation-bar)); }
\ No newline at end of file |