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

master
unarist 7 years ago committed by Eugen Rochko
parent 5f9cb48882
commit 40562fd266
  1. 6
      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 {

Loading…
Cancel
Save