Minor improvements for small screens

This commit is contained in:
Christoph Wiechert
2017-05-09 00:34:12 +02:00
parent f6c2b07a4f
commit e5cd6c581f
2 changed files with 5 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
.btn-group(style='position: absolute; top: 15px; right: 15px;') .btn-group(style='position: absolute; top: 15px; right: 15px;')
a.btn.btn-sm.btn-info(@click='newSession()', title='New Upload') a.btn.btn-sm.btn-info(@click='newSession()', title='New Upload')
i.fa.fa-fw.fa-cloud-upload i.fa.fa-fw.fa-cloud-upload
| new upload span.hidden-xs new upload
.alert.alert-danger(v-show="error") .alert.alert-danger(v-show="error")
strong strong
i.fa.fa-exclamation-triangle i.fa.fa-exclamation-triangle

View File

@@ -53,7 +53,9 @@
overflow-x: auto; overflow-x: auto;
overflow-y: scroll; overflow-y: scroll;
} }
.modal-fluid { @media (min-width: 768px) {
width: 90%; .modal-fluid {
width: 90%;
}
} }
</style> </style>