diff --git a/src/lib/components/sidebar-view.svelte b/src/lib/components/sidebar-view.svelte index cc06ee1..c2035c8 100644 --- a/src/lib/components/sidebar-view.svelte +++ b/src/lib/components/sidebar-view.svelte @@ -49,7 +49,7 @@ .main-container > aside :global(nav) { background: var(--content-background-color); - padding: 0.5em; + padding: 0; border-radius: 12px; } diff --git a/src/routes/plain-text/split-join.svelte b/src/routes/plain-text/split-join.svelte index ab4be95..7842e79 100644 --- a/src/routes/plain-text/split-join.svelte +++ b/src/routes/plain-text/split-join.svelte @@ -2,6 +2,9 @@ import ActionCardItem from "$lib/components/action-card-item.svelte"; import ActionCard from "$lib/components/action-card.svelte"; + import SetSplit from "svelte-material-icons/SetSplit.svelte"; + import SetMerge from "svelte-material-icons/SetMerge.svelte"; + export let text; let separator = ""; @@ -19,15 +22,27 @@ +
+ - \ No newline at end of file + + + \ No newline at end of file diff --git a/static/style.css b/static/style.css index 4fd7f9a..05a03a1 100644 --- a/static/style.css +++ b/static/style.css @@ -145,6 +145,19 @@ input:disabled { padding: 0; } +.nav label { + font-size: 0.9em; + padding: 0.5em 1em; + display: block; +} + +.nav hr { + height: 1px; + border: none; + background: var(--border-color); + margin: 0.75em -0.75em; +} + .nav ul li { margin: 1px 0; }