We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c76fb66 commit 8440cb5Copy full SHA for 8440cb5
src/sass/_mixins.scss
@@ -28,6 +28,17 @@
28
}
29
30
31
+@mixin border($size) {
32
+ border-width: 1px;
33
+ border-style: solid;
34
+ border-radius: map.get(tokens.$border-radius, $size);
35
+
36
+ border-color: map.get(tokens.$border-color, dark);
37
+ @include light-mode {
38
+ border-color: map.get(tokens.$border-color, light);
39
+ }
40
+}
41
42
@mixin transition($property, $duration) {
43
transition-property: $property;
44
transition-duration: map.get(tokens.$duration, $duration);
0 commit comments