diff options
| author | 2022-07-19 12:30:30 +0200 | |
|---|---|---|
| committer | 2022-07-19 12:30:30 +0200 | |
| commit | 6352a1dccbac03a9582810e5d284ebac54f24f5b (patch) | |
| tree | 2c484f58bec627c1bd8e0b403bc1aff479653bcd /p/themes/Ansum | |
| parent | b2e46d62154faf28c3c17e2b775c47d11e38ee56 (diff) | |
Fix: header height (#4452)
* set default header height: 85px
* themes
* fix css RTL
Diffstat (limited to 'p/themes/Ansum')
| -rw-r--r-- | p/themes/Ansum/_layout.scss | 5 | ||||
| -rw-r--r-- | p/themes/Ansum/ansum.css | 3 | ||||
| -rw-r--r-- | p/themes/Ansum/ansum.rtl.css | 3 |
3 files changed, 6 insertions, 5 deletions
diff --git a/p/themes/Ansum/_layout.scss b/p/themes/Ansum/_layout.scss index 727ebecd4..4f2bf2a90 100644 --- a/p/themes/Ansum/_layout.scss +++ b/p/themes/Ansum/_layout.scss @@ -10,6 +10,7 @@ background: variables.$sid-bg; display: block; width: auto; + height: 3rem; table-layout: none; .item { @@ -101,13 +102,11 @@ } } } - - } /*=== Body */ #global { - height: calc(100% - 85px); + height: calc(100% - 4rem); } diff --git a/p/themes/Ansum/ansum.css b/p/themes/Ansum/ansum.css index dc75c6c37..a8a33d7f0 100644 --- a/p/themes/Ansum/ansum.css +++ b/p/themes/Ansum/ansum.css @@ -771,6 +771,7 @@ form th { background: #fbf9f6; display: block; width: auto; + height: 3rem; table-layout: none; } .header .item { @@ -835,7 +836,7 @@ form th { } /*=== Body */ #global { - height: calc(100% - 85px); + height: calc(100% - 4rem); } /*=== Prompt (centered) */ diff --git a/p/themes/Ansum/ansum.rtl.css b/p/themes/Ansum/ansum.rtl.css index 485a1ca18..9f52a9985 100644 --- a/p/themes/Ansum/ansum.rtl.css +++ b/p/themes/Ansum/ansum.rtl.css @@ -771,6 +771,7 @@ form th { background: #fbf9f6; display: block; width: auto; + height: 3rem; table-layout: none; } .header .item { @@ -835,7 +836,7 @@ form th { } /*=== Body */ #global { - height: calc(100% - 85px); + height: calc(100% - 4rem); } /*=== Prompt (centered) */ |
