diff options
author | Sasha Sorokin <dafri.nochiterov8@gmail.com> | 2020-01-12 20:16:20 +0700 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2020-01-12 16:05:09 +0100 |
commit | 7ab12b7654f04b2ea71cada9c8f0a41825864939 (patch) | |
tree | 5c65d6c33edc075afe1e9f984becf1c0be26d94a | |
parent | 32191267a55253e823c35efce8d99424d06241e1 (diff) |
[Glitch] Correct margins for heading actions
Port SCSS changes from 5dcca33c561ebeca9cf12eba8a39efee0dd484d0 to glitch-soc Signed-off-by: Thibaut Girka <thib@sitedethib.com>
-rw-r--r-- | app/javascript/flavours/glitch/styles/admin.scss | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/app/javascript/flavours/glitch/styles/admin.scss b/app/javascript/flavours/glitch/styles/admin.scss index e7c9855b8..a1895d066 100644 --- a/app/javascript/flavours/glitch/styles/admin.scss +++ b/app/javascript/flavours/glitch/styles/admin.scss @@ -186,17 +186,22 @@ $content-width: 840px; padding-bottom: 40px; border-bottom: 1px solid lighten($ui-base-color, 8%); - margin-bottom: 40px; + + margin: -15px -15px 40px 0; flex-wrap: wrap; align-items: center; - justify-content: space-between; + & > * { + margin-top: 15px; + margin-right: 15px; + } + &-actions { display: inline-flex; - & > * { + & > :not(:first-child) { margin-left: 5px; } } |