1
0
Fork 0
mirror of synced 2024-08-18 19:41:30 +12:00

Merge pull request #8377 from Budibase/bug/sev2/automations-list-scroll

Allow automations list scroll
This commit is contained in:
Martin McKeaveney 2022-10-24 15:29:26 +01:00 committed by GitHub
commit 8ceb95c03c

View file

@ -7,7 +7,7 @@
export let webhookModal
</script>
<div class="title">
<div class="nav">
<Tabs selected="Automations">
<Tab title="Automations">
<AutomationList />
@ -27,12 +27,15 @@
top: var(--spacing-l);
right: var(--spacing-xl);
}
.title {
.nav {
overflow-y: auto;
background: var(--background);
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: stretch;
position: relative;
border-right: var(--border-light);
padding-bottom: 60px;
}
</style>