diff options
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 | } | ||
