metaview: fix width on 100% scaling (close #200)

pull/221/head
Varun Patil 2022-11-14 21:49:41 -08:00
parent af8b5fcabf
commit 467c52053c
2 changed files with 8 additions and 1 deletions

View File

@ -344,6 +344,11 @@ body.has-viewer header {
overflow-x: hidden;
}
// Prevent sidebar from becoming too big
aside.app-sidebar {
max-width: 360px !important;
}
// Fill all available space
.fill-block {
width: 100%;

View File

@ -343,6 +343,8 @@ export default class Metadata extends Mixins(GlobalMixin) {
.map {
width: 100%;
height: 200px;
aspect-ratio: 16 / 10;
min-height: 200px;
max-height: 250px;
}
</style>