diff options
author | Vitaly Takmazov | 2019-10-30 10:47:12 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:55 +0300 |
commit | 3900358ca6eeac546cbe0eb0bd36572ddc404634 (patch) | |
tree | 7be54e089d4d487d4b14bfe8916f5b81e71e7cbc /vnext/src/index.css | |
parent | 625261489c14f0726092ee8d9ff730ef5dc0c861 (diff) |
Fix content top on scroll
Diffstat (limited to 'vnext/src/index.css')
-rw-r--r-- | vnext/src/index.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vnext/src/index.css b/vnext/src/index.css index 3cc41b8b..6ca33a13 100644 --- a/vnext/src/index.css +++ b/vnext/src/index.css @@ -163,13 +163,13 @@ hr { #content { grid-area: content; - margin-top: 64px; + margin-top: 0; overflow: auto; transition: margin-top 0.4s; } -.content--full { - margin-top: 0 !important; +.content--top { + margin-top: 64px !important; } #footer { |