mirror of
https://github.com/decaf-dev/obsidian-vault-explorer.git
synced 2026-07-22 10:10:31 +00:00
fix: reduce border thickness divider
This commit is contained in:
parent
3e97c9099c
commit
95aa62cdd2
2 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue