From dd7ed798564643d18d738f20e4cf51ccffd5af99 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 31 Mar 2018 22:07:48 -0700 Subject: Add box-shadow utilities (#25758) --- scss/utilities/_shadows.scss | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 scss/utilities/_shadows.scss (limited to 'scss/utilities') diff --git a/scss/utilities/_shadows.scss b/scss/utilities/_shadows.scss new file mode 100644 index 000000000..f5d03fcd5 --- /dev/null +++ b/scss/utilities/_shadows.scss @@ -0,0 +1,6 @@ +// stylelint-disable declaration-no-important + +.shadow-sm { box-shadow: $box-shadow-sm !important; } +.shadow { box-shadow: $box-shadow !important; } +.shadow-lg { box-shadow: $box-shadow-lg !important; } +.shadow-none { box-shadow: none !important; } -- cgit v1.2.3