mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 15:19:01 +02:00
feat(views/geomap): make full-height
This commit is contained in:
parent
7ea37b9eb9
commit
00fd1ba137
@ -2,6 +2,14 @@ import ViewMode, { ViewModeArgs } from "../view_mode.js";
|
|||||||
|
|
||||||
const TPL = /*html*/`
|
const TPL = /*html*/`
|
||||||
<div class="geo-view">
|
<div class="geo-view">
|
||||||
|
<style>
|
||||||
|
.geo-view {
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
Geo View is not implemented yet.
|
Geo View is not implemented yet.
|
||||||
</div>`;
|
</div>`;
|
||||||
|
|
||||||
@ -20,4 +28,8 @@ export default class GeoView extends ViewMode<{}> {
|
|||||||
return this.$root;
|
return this.$root;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get isFullHeight(): boolean {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user