Skip to content

Commit

Permalink
Merge pull request #324 from matt8707/divider
Browse files Browse the repository at this point in the history
Update sidebar divider color and fix default height
  • Loading branch information
matt8707 authored Feb 1, 2024
2 parents ea14cc1 + d520be2 commit 2ee8261
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/Sidebar/Divider.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import { motion, editMode } from '$lib/Stores';
export let defaultValue: string | undefined = undefined;
export let defaultValue: string | undefined = '50';
export let size: number | undefined = undefined;
export let mode: string | undefined = undefined;
Expand Down Expand Up @@ -43,8 +43,8 @@
.empty {
border-radius: 0.6rem;
background-color: rgba(255, 190, 10, 0.25);
outline: 2px dashed #ffc107;
background-color: rgba(255, 255, 255, 0.25);
outline: 2px dashed #fff;
outline-offset: -2px;
}
</style>

0 comments on commit 2ee8261

Please sign in to comment.