diff options
author | Isabelle Knott <isabelle@blackle-mori.com> | 2017-04-12 14:40:03 -0400 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-12 20:40:03 +0200 |
commit | b0ab632531c82c2c84c557c7c12afb8a91074e2e (patch) | |
tree | 412e2b6df920aead71731628e5446270bf722d6d | |
parent | e1264bbd92718cd6d78bed8c2d1ad9cb96384fea (diff) |
Fix missing compose box when viewport width is exactly 1024px (#1632)
-rw-r--r-- | app/assets/stylesheets/components.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss index 8e4a667e3..1c7f375b7 100644 --- a/app/assets/stylesheets/components.scss +++ b/app/assets/stylesheets/components.scss @@ -59,7 +59,7 @@ z-index: 2; } -@media screen and (min-width: 1024px) { +@media screen and (min-width: 1025px) { .column-icon-clear { top: 10px; } @@ -857,7 +857,7 @@ a.status__content__spoiler-link { } } -@media screen and (min-width: 1024px) { +@media screen and (min-width: 1025px) { .columns-area { padding: 0; } |