diff options
author | Mario Vavti <mario@mariovavti.com> | 2023-10-04 21:00:00 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2023-10-04 21:00:00 +0200 |
commit | 5265c774ae5917b5200510e668f8182eb07af750 (patch) | |
tree | 2933ae33ade766685f103835b2527594a18ae4c1 /view/css | |
parent | d1421d720c3f8ae9a7c409423fcbea4ff8132676 (diff) | |
download | volse-hubzilla-5265c774ae5917b5200510e668f8182eb07af750.tar.gz volse-hubzilla-5265c774ae5917b5200510e668f8182eb07af750.tar.bz2 volse-hubzilla-5265c774ae5917b5200510e668f8182eb07af750.zip |
move right aside into bottom of left aside if screen width is < 1200px
Diffstat (limited to 'view/css')
-rw-r--r-- | view/css/widgets.css | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/view/css/widgets.css b/view/css/widgets.css index bf781cf47..42e869fcd 100644 --- a/view/css/widgets.css +++ b/view/css/widgets.css @@ -207,14 +207,11 @@ a.wikilist { } .fs { - position: fixed; - top: 0px; - left: 0px; - padding: 4.5rem .5rem 1rem .5rem; + position: absolute; + padding: 0 .5rem 1rem .5rem; background-color: var(--bs-body-bg); - width: 100%; - max-width: 100%; - height: 100%; + width: 100vw; + height: 100vh; z-index: 1019; overflow: auto; } |