Browse Source

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

closed-social-glitch-2
unarist 7 years ago
committed by Eugen Rochko
parent
commit
40562fd266
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      app/javascript/styles/components.scss

+ 5
- 1
app/javascript/styles/components.scss 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 {

Loading…
Cancel
Save