Allow automations scroll. Copy datasource class.

This commit is contained in:
Mel O'Hagan 2022-10-24 14:56:05 +01:00
parent b765dd817a
commit 2dd06c1018
1 changed files with 6 additions and 3 deletions

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);
margin-bottom: -60px;
}
</style>