diff options
author | Volpeon <git@volpeon.ink> | 2024-12-09 18:48:23 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2024-12-09 18:48:23 +0100 |
commit | 99bc6e962af22ac9d343434f61aa24b286892466 (patch) | |
tree | 96ef2f5929528bd820905e401df536f93f1b9c8a /src/_sidebar.scss | |
parent | Init (diff) | |
download | furbase-design-2024-99bc6e962af22ac9d343434f61aa24b286892466.tar.gz furbase-design-2024-99bc6e962af22ac9d343434f61aa24b286892466.tar.bz2 furbase-design-2024-99bc6e962af22ac9d343434f61aa24b286892466.zip |
Update
Diffstat (limited to 'src/_sidebar.scss')
-rw-r--r-- | src/_sidebar.scss | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/_sidebar.scss b/src/_sidebar.scss new file mode 100644 index 0000000..d220678 --- /dev/null +++ b/src/_sidebar.scss | |||
@@ -0,0 +1,32 @@ | |||
1 | @use 'iro-sass/src/props'; | ||
2 | |||
3 | @use 'core'; | ||
4 | |||
5 | @mixin styles { | ||
6 | .boxesSidebarLeft{ | ||
7 | margin-inline-end: 30px; | ||
8 | } | ||
9 | |||
10 | .boxesSidebarRight { | ||
11 | margin-inline-start: 30px; | ||
12 | } | ||
13 | |||
14 | .boxesSidebarLeft, .boxesSidebarRight { | ||
15 | .box { | ||
16 | border-radius: 0; | ||
17 | |||
18 | &:not(:first-child) { | ||
19 | margin-block-start: 0; | ||
20 | padding-block-start: 10px; | ||
21 | |||
22 | &::before { | ||
23 | content: ""; | ||
24 | display: block; | ||
25 | block-size: 1px; | ||
26 | margin-block-end: 30px; | ||
27 | background-color: props.get(core.$theme, --base, --200); | ||
28 | } | ||
29 | } | ||
30 | } | ||
31 | } | ||
32 | } | ||