Allow modals to be wider on large screens

This commit is contained in:
calzoneman 2014-08-13 14:01:21 -05:00
parent dc3efd94c8
commit 83ae835bed
1 changed files with 12 additions and 0 deletions

View File

@ -574,3 +574,15 @@ body.chatOnly .pm-panel, body.chatOnly .pm-panel-placeholder {
#chanjs-allow-prompt-buttons button:first-child {
margin-right: 5px;
}
@media screen and (min-width: 768px) {
.modal {
padding: 30px;
}
.modal-dialog {
min-width: 600px!important;
max-width: 1200px!important;
width: auto!important;
}
}