forked from enviPath/enviPy
34 lines
723 B
CSS
34 lines
723 B
CSS
@import "tailwindcss";
|
|
|
|
/* Tell Tailwind where to find Django templates and Python files */
|
|
@source "../../templates";
|
|
|
|
/* Custom theme configuration - must come before plugins */
|
|
@import "./theme.css";
|
|
|
|
/* Import DaisyUI plugin */
|
|
@plugin "daisyui" {
|
|
logs: true;
|
|
}
|
|
|
|
@import "./daisyui-theme.css";
|
|
|
|
/* Bootstrap compatibility layer - prevent Bootstrap from overriding Tailwind */
|
|
@layer base {
|
|
/* Ensure Tailwind's preflight takes precedence in non-legacy sections */
|
|
body:not(.legacy-bootstrap *) {
|
|
@apply antialiased;
|
|
}
|
|
}
|
|
|
|
@layer utilities {
|
|
/* Add important utilities for overriding Bootstrap where needed */
|
|
.tw-flex {
|
|
display: flex !important;
|
|
}
|
|
|
|
.tw-grid {
|
|
display: grid !important;
|
|
}
|
|
}
|