hextra/assets/css/styles.css
Xin 7e37b73779 feat: revamp search experience
chore: hide toc on small screen

chore: make sidebar responsive
2023-08-16 20:39:54 +01:00

30 lines
548 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@import "typography.css";
@import "highlight.css";
@import "components/cards.css";
@import "components/steps.css";
@import "components/search.css";
@import "components/sidebar.css";
html {
@apply text-base antialiased;
font-feature-settings: "rlig" 1, "calt" 1, "ss01" 1;
-webkit-tap-highlight-color: transparent;
}
body {
@apply w-full bg-white dark:bg-dark dark:text-gray-100;
}
:root {
--primary-hue: 212deg;
--navbar-height: 4rem;
}
.dark {
--primary-hue: 204deg;
}