mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-01 16:22:32 +00:00
fix height on safari
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
const { verticalFileView, elevationProfile, bottomPanelSize, rightPanelSize } = settings;
|
||||
</script>
|
||||
|
||||
<div class="fixed flex flex-row w-screen h-dvh">
|
||||
<div class="fixed flex flex-row w-screen h-screen h-dvh">
|
||||
<div class="flex flex-col grow h-full min-w-0">
|
||||
<div class="grow relative">
|
||||
<Menu />
|
||||
|
@@ -40,10 +40,14 @@
|
||||
import { get } from 'svelte/store';
|
||||
import { DateFormatter } from '@internationalized/date';
|
||||
|
||||
const df = new DateFormatter($locale ?? 'en', {
|
||||
dateStyle: 'medium',
|
||||
timeStyle: 'medium'
|
||||
});
|
||||
let df: DateFormatter;
|
||||
|
||||
$: if ($locale) {
|
||||
df = new DateFormatter($locale, {
|
||||
dateStyle: 'medium',
|
||||
timeStyle: 'medium'
|
||||
});
|
||||
}
|
||||
|
||||
let canvas: HTMLCanvasElement;
|
||||
let overlay: HTMLCanvasElement;
|
||||
|
@@ -11,7 +11,6 @@
|
||||
Redo2,
|
||||
Trash2,
|
||||
Upload,
|
||||
Cloud,
|
||||
Heart,
|
||||
Map,
|
||||
Layers2,
|
||||
|
Reference in New Issue
Block a user