Files
labelmaker/assets/css/app.css
2025-05-08 14:43:01 -04:00

31 lines
497 B
CSS

@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
/* This file is for your main application CSS */
.outline-black {
text-shadow:
-1px -1px 0 black,
1px -1px 0 black,
-1px 1px 0 black,
1px 1px 0 black;
}
.outline-gray {
text-shadow:
-1px -1px 0 gray,
1px -1px 0 gray,
-1px 1px 0 gray,
1px 1px 0 gray;
}
.outline-white {
color: white;
text-shadow:
-1px -1px 0 white,
1px -1px 0 white,
-1px 1px 0 white,
1px 1px 0 white;
}