diff options
author | Mario <mario@mariovavti.com> | 2023-11-27 08:44:25 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-11-27 08:44:25 +0000 |
commit | 5b9f32fadec4a3234a2e37e02b31ad8b4208cf4e (patch) | |
tree | 945700d3ace740c97746d55279c6c633c26df853 | |
parent | 6dd285811aadc9c8e695f98548f6a22ea8cfaa0e (diff) | |
parent | a2b0abc90d8af4ab8a8a0d41397883b23762e5ce (diff) | |
download | volse-hubzilla-5b9f32fadec4a3234a2e37e02b31ad8b4208cf4e.tar.gz volse-hubzilla-5b9f32fadec4a3234a2e37e02b31ad8b4208cf4e.tar.bz2 volse-hubzilla-5b9f32fadec4a3234a2e37e02b31ad8b4208cf4e.zip |
Merge branch 'dev' into 'dev'
Update doubleleft.css and doubleright.css according to v.8.8 default.css
See merge request hubzilla/core!2074
-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; } |