vega-frontend-monorepo/apps/trading/pages/styles.css
John Walley 819c21d35c
feat(#776): Resizable panes in trading app
* feat: resizable panes in trading app

* chore: use tailwind theme for colors
2022-07-19 09:12:02 +01:00

18 lines
232 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
html,
body,
#__next {
@apply h-full;
}
html > body {
--focus-border: theme('colors.vega.pink');
}
html.dark > body {
--focus-border: theme('colors.vega.yellow');
}