Files
chronus/src/styles/global.css
Atridad Lahiji caf763aa1e
All checks were successful
Docker Deploy / build-and-push (push) Successful in 4m6s
Moar
2026-02-09 02:28:54 -07:00

18 lines
380 B
CSS

@import "tailwindcss";
@plugin "daisyui" {
themes: false;
}
@plugin "./theme-dark.ts";
@plugin "./theme-light.ts";
/* Smoother transitions globally */
@layer base {
* {
@apply transition-colors duration-150;
}
/* Opt out for elements where color transitions are unwanted */
input, select, textarea, progress, .loading, .countdown, svg {
transition: none;
}
}