1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-20 17:35:28 +00:00
notes/node_modules/primer-utilities/lib/box-shadow.scss
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

23 lines
356 B
SCSS

// Box shadow utilities
// stylelint-disable primer/selector-no-utility
// Box shadows
.box-shadow {
box-shadow: $box-shadow !important;
}
.box-shadow-medium {
box-shadow: $box-shadow-medium !important;
}
.box-shadow-large {
box-shadow: $box-shadow-large !important;
}
// Turn off box shadow
.box-shadow-none {
box-shadow: none !important;
}