20 lines
383 B
CSS
20 lines
383 B
CSS
@import "tailwindcss";
|
|
|
|
@plugin "./daisyui-wrapper.js" {
|
|
themes: all;
|
|
};
|
|
|
|
@plugin "./daisyui-theme-wrapper.js" {
|
|
};
|
|
|
|
@source not "*";
|
|
@source "./src/**/*.{rs,html,css}";
|
|
|
|
@layer utilities {
|
|
.interact {
|
|
@apply cursor-pointer;
|
|
@apply hover:text-base-content/70;
|
|
@apply active:text-primary active:translate-y-[.5px] active:shadow-(--btn-shadow);
|
|
}
|
|
}
|