1
0
Fork 0
mirror of synced 2024-09-15 16:59:43 +12:00

fix: automation panel does not scroll

Co-authored-by: jaysoni-ash42 <jsoni775566666@gmail.com>
This commit is contained in:
gitstart 2023-05-18 06:32:25 +00:00
parent d5439e1fb6
commit d6736d7763

View file

@ -32,7 +32,9 @@
<!-- routify:options index=3 -->
<div class="root">
<AutomationPanel {modal} {webhookModal} />
<div class="list">
<AutomationPanel {modal} {webhookModal} />
</div>
<div class="content">
{#if $automationStore.automations?.length}
<slot />
@ -81,6 +83,11 @@
grid-template-columns: 260px minmax(510px, 1fr) fit-content(500px);
overflow: hidden;
}
.list {
overflow-x: hidden;
overflow-y: auto;
display: flex;
}
.content {
position: relative;
display: flex;