diff options
author | unarist <m.unarist@gmail.com> | 2017-05-03 18:39:14 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-03 11:39:14 +0200 |
commit | 40562fd266dbd4da6b7e11a17d94ee0313e39339 (patch) | |
tree | 4f7c8994cb5966e51369d5d7d6e916b2f7cdbb7e /app | |
parent | 5f9cb4888298528afc4866d5dc72c43877a41305 (diff) |
Fix width of .confirmation-modal on narrow screens (#2743)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/styles/components.scss | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/javascript/styles/components.scss b/app/javascript/styles/components.scss index 178ac05de..f9cf6a171 100644 --- 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 { |