diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2021-02-11 13:56:41 -0500 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2021-02-11 13:56:41 -0500 |
commit | 56008230167a0e3dfb4694d73e6b0159b6440484 (patch) | |
tree | 7e1c11b7bdc68cb5ff9e62ae62e8c07efa412bc3 /styles | |
parent | 8c2d855f7e0ade48913a893b03f342156af3e528 (diff) |
Fix mobile settings
Diffstat (limited to 'styles')
-rw-r--r-- | styles/client/base.css | 1 | ||||
-rw-r--r-- | styles/input.css | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/styles/client/base.css b/styles/client/base.css index e0b19d3..635fc78 100644 --- a/styles/client/base.css +++ b/styles/client/base.css @@ -158,6 +158,7 @@ div.settings { display:flex; flex-direction: column; padding: 5px; + overflow-y: auto; } /* Table rules */ diff --git a/styles/input.css b/styles/input.css index 87ee725..6f99fb5 100644 --- a/styles/input.css +++ b/styles/input.css @@ -433,6 +433,7 @@ div.input-title-wrapper::before { color: var(--main-color); content: attr(data-title); + display: block; } div.input-title-wrapper @@ -444,5 +445,15 @@ div.input-title-wrapper padding: 5px; } +div.input-title-wrapper[type=checkbox] +{ + cursor: pointer; +} + +div.input-title-wrapper[type=checkbox] > input +{ + pointer-events: none; +} + /* End Input CSS */
\ No newline at end of file |