48 lines
816 B
CSS
48 lines
816 B
CSS
@import "tailwindcss";
|
|
|
|
@config "../tailwind.config.cjs";
|
|
|
|
/* E-TIB Custom Utilities */
|
|
@layer utilities {
|
|
.text-balance {
|
|
text-wrap: balance;
|
|
}
|
|
}
|
|
|
|
/* Base Styles */
|
|
@layer base {
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
body {
|
|
@apply bg-neutral font-sans text-neutral-dark antialiased;
|
|
}
|
|
|
|
::selection {
|
|
background-color: theme('colors.primary.dark');
|
|
color: theme('colors.neutral.light');
|
|
}
|
|
|
|
/* Interactive elements pointer */
|
|
a,
|
|
button,
|
|
[role="button"],
|
|
input[type="button"],
|
|
input[type="submit"],
|
|
input[type="reset"],
|
|
select,
|
|
summary,
|
|
label[for] {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Ensure disabled elements don't show pointer */
|
|
button:disabled,
|
|
[role="button"]:disabled,
|
|
input:disabled,
|
|
select:disabled,
|
|
button[disabled] {
|
|
cursor: not-allowed;
|
|
}
|
|
}
|