vega-frontend-monorepo/apps/trading/pages/styles.css
PeteWilliams 0964d6dee5
chore(#819): ui tweaks (#826)
* chore: tweak panel layout/styling

* chore: tweak panel layout/styling

* chore: add thicker borders
2022-07-21 09:10:37 +01:00

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');
}