diff options
author | Mario <mario@mariovavti.com> | 2023-11-27 08:45:19 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-11-27 08:45:19 +0000 |
commit | 43c2e71b259dad3285e64f7cc42ce892efc7a418 (patch) | |
tree | 44f56fad7c9ea5ec76b48592d06a478a18d96dd6 | |
parent | 76a1a6da3485577d5dc861b75dd2b2d40870fd24 (diff) | |
parent | 5b9f32fadec4a3234a2e37e02b31ad8b4208cf4e (diff) | |
download | volse-hubzilla-43c2e71b259dad3285e64f7cc42ce892efc7a418.tar.gz volse-hubzilla-43c2e71b259dad3285e64f7cc42ce892efc7a418.tar.bz2 volse-hubzilla-43c2e71b259dad3285e64f7cc42ce892efc7a418.zip |
Merge branch 'dev'
-rw-r--r-- | view/css/doubleleft.css | 6 | ||||
-rw-r--r-- | view/css/doubleright.css | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/view/css/doubleleft.css b/view/css/doubleleft.css index f26b66824..7dde29f06 100644 --- a/view/css/doubleleft.css +++ b/view/css/doubleleft.css @@ -19,13 +19,15 @@ main { #region_1 { position: relative; order: 1; - padding: 4.5rem 7px 0px 7px; + padding: 0 7px 0 7px; + width: 25%; + min-width: 300px; } #region_2 { position: relative; flex: 1; order: 2; - padding: 4.5rem 7px 200px 7px; + padding: 0 7px 200px 7px; min-width: 0; } diff --git a/view/css/doubleright.css b/view/css/doubleright.css index 29a09c007..548b34da8 100644 --- a/view/css/doubleright.css +++ b/view/css/doubleright.css @@ -20,12 +20,14 @@ main { position: relative; flex: 1; order: 1; - padding: 4.5rem 7px 200px 7px; + padding: 0 7px 200px 7px; min-width: 0; } #region_2 { position: relative; order: 2; - padding: 4.5rem 7px 0px 7px; + padding: 0 7px 0 7px; + width: 25%; + min-width: 300px; } |