diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-11-14 18:12:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-14 18:12:06 -0500 |
commit | 4b1c7b1e269b98eaf4906c82cb3fd09566dce7be (patch) | |
tree | 4348e17baf5601930971e95f55edcc7708526598 /ext/mixed/css/search.css | |
parent | 34c6d4210a3e638482c13d0f0129489e254900de (diff) |
Display layout updates (#1032)
* Fix display scroll not always using the right position
* Update display layout and scroll method
* Fix border size
Diffstat (limited to 'ext/mixed/css/search.css')
-rw-r--r-- | ext/mixed/css/search.css | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/ext/mixed/css/search.css b/ext/mixed/css/search.css index 7ef32fb4..456add33 100644 --- a/ext/mixed/css/search.css +++ b/ext/mixed/css/search.css @@ -93,7 +93,7 @@ h1 { padding: 0.25em 0 0; font-weight: normal; box-sizing: border-box; - border-bottom: var(--thin-border-size) solid var(--separator-color1); + border-bottom: calc(1em / (var(--font-size-no-units) * 2)) solid var(--separator-color1); } /* Material design select */ @@ -229,17 +229,7 @@ label.toggle { } /* Content layout */ -.content { - flex: 1 0 auto; - flex-flow: row nowrap; - width: 100%; - display: flex; - position: relative; - align-items: stretch; - justify-content: center; -} -.content-center { - flex: 1 1 auto; +.content-body { width: var(--main-content-size); padding: 0 var(--main-content-padding); max-width: var(--main-content-size); |