1
0
Fork 0
mirror of synced 2024-07-02 04:50:44 +12:00

fixes height issue with grid component

This commit is contained in:
kevmodrome 2020-10-13 12:15:44 +02:00
parent 459544f3b4
commit 50d2f45446
No known key found for this signature in database
GPG key ID: E8F9CD141E63BF38
2 changed files with 6 additions and 6 deletions

View file

@ -238,7 +238,10 @@
"material"
]
},
"height": "number",
"height": {
"type": "number",
"default": "500"
},
"pagination": "bool"
}
},

View file

@ -18,7 +18,7 @@
export let datasource = {}
export let editable
export let theme = "alpine"
export let height
export let height = 500
export let pagination
let dataLoaded = false
@ -115,7 +115,7 @@
href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css" />
</svelte:head>
<div class="container" style="--grid-height: {height}px">
<div style="--grid-height: {height}px">
{#if dataLoaded}
{#if editable}
<div class="controls">
@ -139,9 +139,6 @@
</div>
<style>
.container {
--grid-height: 800px;
}
.container :global(form) {
display: grid;
grid-template-columns: repeat(2);