forked from treehouse/mastodon
Fix width of .confirmation-modal on narrow screens (#2743)
parent
5f9cb48882
commit
40562fd266
|
@ -2947,7 +2947,11 @@ button.icon-button.active i.fa-retweet {
|
||||||
}
|
}
|
||||||
|
|
||||||
.confirmation-modal {
|
.confirmation-modal {
|
||||||
|
max-width: 280px;
|
||||||
|
|
||||||
|
@media screen and (min-width: 480px) {
|
||||||
max-width: 380px;
|
max-width: 380px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.confirmation-modal__action-bar {
|
.confirmation-modal__action-bar {
|
||||||
|
|
Loading…
Reference in New Issue