diff options
| author | Jeroen <jeroenpardon@users.noreply.github.com> | 2020-08-07 03:12:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-07 03:12:38 +0200 |
| commit | 42971a3cae06eed7a67f893930578c675c615a15 (patch) | |
| tree | 712f80f319f667d181f917969f9607f79e1c812c /assets/css/styles.css | |
| parent | 3cbb7a78a76bccb1036cd339f39eb88867a50710 (diff) | |
| parent | 9880643655973f68092dd3ae278ff76a47f5c2a0 (diff) | |
Merge pull request #11 from tionis/master
Removed jQuery Dependency and Added Scrollbar for Options
Diffstat (limited to 'assets/css/styles.css')
| -rwxr-xr-x | assets/css/styles.css | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/assets/css/styles.css b/assets/css/styles.css index 5ec96f6..18b3b02 100755 --- a/assets/css/styles.css +++ b/assets/css/styles.css @@ -285,6 +285,7 @@ table a{ #modal{ + overflow-y: auto; bottom: 0; left: 0; opacity: 0; @@ -307,7 +308,7 @@ table a{ margin-left: auto; margin-right: auto; padding: 2em; - margin-top: 25vh; + margin-top: 5vh; width: 50%; display: flex; flex-direction: column; @@ -480,7 +481,7 @@ table a{ #modal>div{ margin-left: auto; margin-right: auto; - margin-top: 25vh; + margin-top: 5vh; width: 90%; } } @@ -545,4 +546,11 @@ table a{ grid-template-columns: 1fr 1fr; grid-template-rows: auto; } +} + +/* Small Screens */ +@media only screen and (max-width: 400px) { + #app-address { + display: none; + } }
\ No newline at end of file |