3ff5bbb5a7
* fix: border too thick, use grid head component * fix: unused and superfluous classes, define border color in one place * fix: tooltip should be on data not label
25 lines
421 B
CSS
25 lines
421 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html,
|
|
body,
|
|
#__next {
|
|
@apply h-full;
|
|
}
|
|
|
|
/* Styles for allotment */
|
|
html {
|
|
--focus-border: theme('colors.vega.pink');
|
|
--separator-border: theme('colors.neutral.300');
|
|
}
|
|
|
|
html.dark {
|
|
--focus-border: theme('colors.vega.yellow');
|
|
--separator-border: theme('colors.neutral.600');
|
|
}
|
|
|
|
.border-default {
|
|
@apply border-neutral-300 dark:border-neutral-600;
|
|
}
|