diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-06-01 19:19:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-01 19:19:30 +0200 |
commit | 8d6e4e0485549ffc7323e65ff9a106333c265e8a (patch) | |
tree | e8b7c69d927a8df9f2552dc0cf5e599804d6211e | |
parent | 73c0c36e7be8a543e4d6b326a22dcbfa9d5b566d (diff) |
Fix margin between compose warning, reply indicator and textarea (#7701)
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index 39eaf5061..939178b50 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -251,7 +251,7 @@ .compose-form__warning { color: $inverted-text-color; - margin-bottom: 15px; + margin-bottom: 10px; background: $ui-primary-color; box-shadow: 0 2px 6px rgba($base-shadow-color, 0.3); padding: 8px 10px; @@ -583,8 +583,7 @@ .reply-indicator { border-radius: 4px; - position: relative; - bottom: 10px; + margin-bottom: 10px; background: $ui-primary-color; padding: 10px; } |