Skip to content

Commit cb52f0a

Browse files
committed
feat: add additional border mixins for x and y directions
1 parent 236f4ec commit cb52f0a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/css/mixins.scss

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,15 @@
1717
&--right {
1818
border-right: 1px solid var(#{$color});
1919
}
20+
21+
&--x {
22+
border-left: 1px solid var(#{$color});
23+
border-right: 1px solid var(#{$color});
24+
}
25+
26+
&--y {
27+
border-top: 1px solid var(#{$color});
28+
border-bottom: 1px solid var(#{$color});
29+
}
2030
}
2131
}

0 commit comments

Comments
 (0)