Primitives
- -Radicle Design System
Components
- -{title}
-{subTitle}
-diff --git a/Showcase.svelte b/Showcase.svelte
index 28ccc0f..8c62dba 100644
--- a/Showcase.svelte
+++ b/Showcase.svelte
@@ -18,6 +18,7 @@
import Button from "./Button.svelte";
import Checkbox from "./Checkbox.svelte";
import Dropdown from "./Dropdown.svelte";
+ import Emoji from "./Emoji.svelte";
import IdentifierLink from "./IdentifierLink.svelte";
import LoadingAnimation from "./LoadingAnimation.svelte";
import SegmentedControl from "./SegmentedControl.svelte";
@@ -242,6 +243,27 @@
margin-bottom: 32px;
align-items: flex-end;
}
+
+ .sidebar {
+ width: var(--sidebar-width);
+ height: 100%;
+ background-color: var(--color-foreground-level-2);
+ position: fixed;
+ z-index: 10;
+ display: flex;
+ flex-direction: column;
+ align-items: start;
+ gap: 1.5rem;
+ padding-top: 3rem;
+ padding-left: 2rem;
+ }
+
+ .sidebar a {
+ display: inline-flex;
+ gap: 1rem;
+ justify-content: center;
+ align-items: center;
+ }
{subTitle}
-