- 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>
22 lines
439 B
CSS
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;
|
|
}
|