logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 40562fd266dbd4da6b7e11a17d94ee0313e39339
parent: 5f9cb4888298528afc4866d5dc72c43877a41305
Author: unarist <m.unarist@gmail.com>
Date:   Wed,  3 May 2017 18:39:14 +0900

Fix width of .confirmation-modal on narrow screens (#2743)


Diffstat:

Mapp/javascript/styles/components.scss6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/app/javascript/styles/components.scss b/app/javascript/styles/components.scss @@ -2947,7 +2947,11 @@ button.icon-button.active i.fa-retweet { } .confirmation-modal { - max-width: 380px; + max-width: 280px; + + @media screen and (min-width: 480px) { + max-width: 380px; + } } .confirmation-modal__action-bar {