forked from coracle/caravel
15 lines
327 B
CSS
15 lines
327 B
CSS
@import "tailwindcss";
|
|
@import "../node_modules/preline/variants.css";
|
|
@source "../node_modules/preline/dist/*.js";
|
|
|
|
/* Pointer cursor on buttons */
|
|
@layer base {
|
|
button:not(:disabled),
|
|
[role="button"]:not(:disabled) {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
/* Defaults hover styles on all devices */
|
|
@custom-variant hover (&:hover);
|