diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-11-20 22:42:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-20 22:42:49 -0500 |
commit | 181ade93d64ca54cee35415e795f42e58d556f54 (patch) | |
tree | 2af5655b0411078ebe8416206877c73f785720ac /ext/mixed/css | |
parent | 1216926fbdb6b897f4cf9d4cb25d3aaef86707d1 (diff) |
Display scroll fixes (#1046)
* Update focus when internal focus is changed
* Update scroll layout
Diffstat (limited to 'ext/mixed/css')
-rw-r--r-- | ext/mixed/css/display.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ext/mixed/css/display.css b/ext/mixed/css/display.css index 6986696f..997aa40a 100644 --- a/ext/mixed/css/display.css +++ b/ext/mixed/css/display.css @@ -242,6 +242,15 @@ a { height: 100%; display: flex; flex-flow: column nowrap; + position: relative; + align-items: stretch; + justify-content: flex-start; +} +.content-scroll { + width: 100%; + height: 100%; + display: flex; + flex-flow: column nowrap; overflow-x: hidden; overflow-y: scroll; position: relative; |