From: Isabelle Knott Date: Wed, 12 Apr 2017 18:40:03 +0000 (-0400) Subject: Fix missing compose box when viewport width is exactly 1024px (#1632) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=b0ab632531c82c2c84c557c7c12afb8a91074e2e;p=mastodon.git Fix missing compose box when viewport width is exactly 1024px (#1632) --- 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; }