Fix scrollbars and dialogs on lower resolutions

This commit is contained in:
Jan Oberhauser
2019-06-27 12:44:59 +02:00
parent a7cd27d745
commit 6cc6c6f138
2 changed files with 22 additions and 2 deletions

View File

@@ -94,9 +94,13 @@ export default Vue.extend({
position: relative;
width: 80%;
height: 80%;
margin: 8em auto;
margin: 6em auto;
background-color: #fff;
border-radius: 2px;
@media (max-height: 720px) {
margin: 1em auto;
height: 95%;
}
}
}