1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

scrollable ui

- the entire width of the ui is now scrollable
This commit is contained in:
Joe 2021-02-22 09:02:09 +00:00
parent ecc9c6dd14
commit 8c9405a0cf

View file

@ -28,19 +28,24 @@
</script>
<section>
<div class="inner">
{#if $backendUiStore.selectedDatabase._id && selectedQuery}
<QueryInterface query={selectedQuery} />
{/if}
</div>
</section>
<style>
section {
overflow: scroll;
width: 640px;
margin: 0 auto;
}
::-webkit-scrollbar {
width: 0px;
background: transparent; /* make scrollbar transparent */
}
.inner {
width: 640px;
margin: 0 auto;
}
</style>