0964d6dee5
* chore: tweak panel layout/styling * chore: tweak panel layout/styling * chore: add thicker borders
20 lines
328 B
CSS
20 lines
328 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html,
|
|
body,
|
|
#__next {
|
|
@apply h-full;
|
|
}
|
|
|
|
html > body {
|
|
--focus-border: theme('colors.vega.pink');
|
|
--separator-border: theme('colors.black.10');
|
|
}
|
|
|
|
html.dark > body {
|
|
--focus-border: theme('colors.vega.yellow');
|
|
--separator-border: theme('colors.black.70');
|
|
}
|