fix: modal styles on mobile

This commit is contained in:
Kieran 2023-11-23 12:43:20 +00:00
parent 20c4ecaa0c
commit 0f07e75905
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

View File

@ -20,6 +20,7 @@
margin-top: auto;
margin-bottom: auto;
--border-color: var(--gray);
max-width: 100%;
}
@media (min-width: 600px) {
@ -28,6 +29,11 @@
width: 600px;
}
}
@media (max-width: 600px) {
.modal-body {
min-width: 100%;
}
}
.modal-body button.secondary:hover {
background-color: var(--gray);