Skip to content

Commit 32e8f9f

Browse files
authored
feat: Sass helper to box-shadow inset (#289)
1 parent 74b8636 commit 32e8f9f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/fuselage/src/styles/mixins/shadows.scss

+4
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@
55
@mixin use-focus-shadow($outer-color) {
66
box-shadow: 0 0 0 #{ to-rem(4) } #{ $outer-color };
77
}
8+
9+
@mixin use-focus-shadow-inset($outer-color) {
10+
box-shadow: 0 0 0 #{ to-rem(4) } #{ $outer-color } inset;
11+
}

0 commit comments

Comments
 (0)