fix: reduce border thickness divider

This commit is contained in:
Trey Wallis 2024-05-01 02:21:44 -06:00
parent 3e97c9099c
commit 95aa62cdd2
2 changed files with 3 additions and 2 deletions

View file

@ -32,7 +32,7 @@
on:change={handleGroupNameChange}
/>
</div>
<Divider />
<Divider borderWidth="1px" />
<div class="vault-explorer-group-edit-view__body">
{#if selectedGroup.filters.length > 0}
<PropertyFilterList

View file

@ -1,10 +1,11 @@
<script lang="ts">
export let direction: "horizontal" | "vertical" = "horizontal";
export let borderWidth: string = "var(--hr-thickness)";
$: className = `vault-explorer-divider vault-explorer-divider--${direction}`;
</script>
<div class={className} />
<div class={className} style="border-width: {borderWidth}" />
<style>
.vault-explorer-divider--horizontal {