Skip to content
Snippets Groups Projects
Commit 40562fd2 authored by unarist's avatar unarist Committed by Eugen Rochko
Browse files

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

parent 5f9cb488
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment