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

This commit is contained in:
unarist 2017-05-03 18:39:14 +09:00 committed by Eugen Rochko
parent 5f9cb48882
commit 40562fd266
1 changed files with 5 additions and 1 deletions

View File

@ -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 {