All checks were successful
Docker Deploy / build-and-push (push) Successful in 4m6s
18 lines
380 B
CSS
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;
|
|
}
|
|
}
|