swornforged/assets/css/app.css

19 lines
372 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
.text-shadow {
text-shadow: 0px 1px 2px rgb(0 0 0 / 50%);
}
.text-shadow-md {
text-shadow: 0px 3px 6px rgb(0 0 0 / 30%);
}
.text-shadow-lg {
text-shadow: 0px 3px 6px rgb(0 0 0 / 30%), 0px 14px 28px rgb(0 0 0 / 25%);
}
.text-shadow-none {
text-shadow: none;
}
}