Files
website-v2/frontend/docsstyles.css
Greg Newman 65d92a0a4a 🐛 only first of type should be styled
Only add margin/padding to the first of type for the divs listed. These classes are used heavily in the docs and we don’t want to touch anything else.
2023-10-06 18:45:04 -04:00

31 lines
533 B
CSS

@tailwind components;
@tailwind utilities;
[x-cloak] {
display: none !important;
}
body {
@apply max-w-7xl mx-auto md:pt-11 md:px-6 my-0;
@apply h-screen font-cairo;
@apply font-cairo;
}
hr:first-of-type {
@apply border-0;
}
#mobile-menu-button {
@apply outline-none border-0 bg-transparent;
}
div.section:first-of-type,
div.spirit-nav:first-of-type,,
div.copyright-footer:first-of-type,,
div.chapter:first-of-type,,
div.refentry:first-of-type,,
div.book:first-of-type, {
@apply max-w-7xl px-3 md:px-6 mx-auto;
}