Add effects/_box_shadow.scss
This commit is contained in:
parent
e76ee26a61
commit
7ff35d826e
4 changed files with 27 additions and 1 deletions
2
bin/emit
2
bin/emit
|
@ -10,7 +10,7 @@ end
|
|||
|
||||
def read
|
||||
noecho { $stdin.gets }
|
||||
.gsub(/[^A-Za-z0-9_\s\/\-,;:*"'.]/, '')
|
||||
.gsub(/[^A-Za-z0-9_\s\/\-,;:*"'.()#]/, '')
|
||||
end
|
||||
|
||||
open = false
|
||||
|
|
|
@ -6,3 +6,4 @@
|
|||
@import "tail/display/index";
|
||||
@import "tail/flex/index";
|
||||
@import "tail/font/index";
|
||||
@import "tail/effects/index";
|
||||
|
|
24
src/tail/effects/_box_shadow.scss
Normal file
24
src/tail/effects/_box_shadow.scss
Normal file
|
@ -0,0 +1,24 @@
|
|||
.shadow-sm {
|
||||
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
||||
}
|
||||
.shadow {
|
||||
box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
||||
}
|
||||
.shadow-md {
|
||||
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
||||
}
|
||||
.shadow-lg {
|
||||
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
||||
}
|
||||
.shadow-xl {
|
||||
box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
||||
}
|
||||
.shadow-2xl {
|
||||
box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
|
||||
}
|
||||
.shadow-inner {
|
||||
box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
|
||||
}
|
||||
.shadow-none {
|
||||
box-shadow: 0 0 #0000;
|
||||
}
|
1
src/tail/effects/index.scss
Normal file
1
src/tail/effects/index.scss
Normal file
|
@ -0,0 +1 @@
|
|||
@import "box_shadow";
|
Loading…
Reference in a new issue