Add effects/_box_shadow.scss

This commit is contained in:
0x1eef 2024-01-28 03:51:55 -03:00
parent e76ee26a61
commit 7ff35d826e
4 changed files with 27 additions and 1 deletions

View file

@ -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

View file

@ -6,3 +6,4 @@
@import "tail/display/index";
@import "tail/flex/index";
@import "tail/font/index";
@import "tail/effects/index";

View 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;
}

View file

@ -0,0 +1 @@
@import "box_shadow";