diff options
| author | Xe Iaso <me@xeiaso.net> | 2023-09-09 22:37:12 -0400 |
|---|---|---|
| committer | Xe Iaso <me@xeiaso.net> | 2023-09-09 22:37:12 -0400 |
| commit | f31efd7579b4841d85d6054606bdd86a54dc142b (patch) | |
| tree | e599f00f54ffd3710e1cab5cf4fe84eb2a09f506 /static/css/preflight.css | |
| parent | 8876dc2340b5b04a8c72bb06e92693c35cb97a07 (diff) | |
| download | xesite-f31efd7579b4841d85d6054606bdd86a54dc142b.tar.xz xesite-f31efd7579b4841d85d6054606bdd86a54dc142b.zip | |
lib/xesite_templates: use tailwind CSS
Signed-off-by: Xe Iaso <me@xeiaso.net>
Diffstat (limited to 'static/css/preflight.css')
| -rw-r--r-- | static/css/preflight.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/static/css/preflight.css b/static/css/preflight.css new file mode 100644 index 0000000..2ad4e61 --- /dev/null +++ b/static/css/preflight.css @@ -0,0 +1,15 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +@layer base { + a { + @apply text-blue-dark; + } + + @media (prefers-color-scheme: dark) { + a { + @apply text-blueDark-light; + } + } +}
\ No newline at end of file |
