nx/nx-dev/tutorial/theme.css
Isaac Mann 2cb0fa2b55
docs(core): publish tutorial kit tutorials (#30973)
- Migrate Gradle tutorial to tutorial kit section (not as an interactive
tutorial)
- remove `npx` from online tutorial instructions
- Update sidebar tutorial links to point to new tutorials

---------

Co-authored-by: Jack Hsu <jack.hsu@gmail.com>
2025-05-03 10:58:02 -04:00

22 lines
439 B
CSS

:root[data-theme='dark'] {
--tk-background-primary: rgb(15 23 42);
--tk-background-secondary: #181f2e;
--tk-border-primary: #2d394a;
}
:root[data-theme='light'] {
--tk-background-secondary: rgb(248 250 252);
--tk-border-primary: #dee5ed;
}
.markdown-content {
width: 100%;
max-width: 56rem;
margin: 0 auto;
}
.markdown-content :is(h1, h2, h3, h4, h5, h6) {
font-size: revert;
line-height: revert;
margin: revert;
}