Fix width of .confirmation-modal on narrow screens (#2743)
This commit is contained in:
parent
19346e7992
commit
d3ece602d8
1 changed files with 5 additions and 1 deletions
|
@ -2947,8 +2947,12 @@ button.icon-button.active i.fa-retweet {
|
|||
}
|
||||
|
||||
.confirmation-modal {
|
||||
max-width: 280px;
|
||||
|
||||
@media screen and (min-width: 480px) {
|
||||
max-width: 380px;
|
||||
}
|
||||
}
|
||||
|
||||
.confirmation-modal__action-bar {
|
||||
& > div {
|
||||
|
|
Loading…
Reference in a new issue