outlines for the preview and adjustable height

This commit is contained in:
Gavin McDonald
2025-05-08 14:43:01 -04:00
parent ed7931f0d6
commit dd3d802760
4 changed files with 83 additions and 22 deletions

View File

@@ -1,5 +1,30 @@
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
@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;
}