mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-20 11:35:29 +01:00
Fix width of .confirmation-modal on narrow screens (#2743)
This commit is contained in:
parent
5f9cb48882
commit
40562fd266
@ -2947,7 +2947,11 @@ button.icon-button.active i.fa-retweet {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.confirmation-modal {
|
.confirmation-modal {
|
||||||
max-width: 380px;
|
max-width: 280px;
|
||||||
|
|
||||||
|
@media screen and (min-width: 480px) {
|
||||||
|
max-width: 380px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.confirmation-modal__action-bar {
|
.confirmation-modal__action-bar {
|
||||||
|
Loading…
Reference in New Issue
Block a user