JSFiddle - React, Tailwind, and code Playground
by khamer
HTML
<h1>shadow</h1>
SCSS
h1 {
@for $i from 1 through 10 {
$shadow: $shadow, $i $i blue;
}
text-shadow: $shadow;
}
by khamer
<h1>shadow</h1>
h1 {
@for $i from 1 through 10 {
$shadow: $shadow, $i $i blue;
}
text-shadow: $shadow;
}