Fix Modals on Mobile (#1110)

This commit is contained in:
William O'Beirne 2018-02-17 16:57:15 -05:00 committed by Daniel Ternyak
parent 97d58c4a18
commit 41c5c32d51
2 changed files with 9 additions and 0 deletions

View File

@ -108,6 +108,11 @@ $m-anim-speed: 400ms;
min-width: 100px;
}
}
// Mobile styles
@media(max-width: $screen-sm) {
width: calc(100% - 40px);
}
}
.animate-modal {

View File

@ -57,3 +57,7 @@ hr {
border: 0;
border-top: 1px solid $hr-border;
}
#app {
overflow-x: hidden;
}