Adds a tutorial project under nx-dev The tutorials are run in browser and can be accessed here: [/tutorials](https://nx-dev-git-nx-dev-tutorialkit-nrwl.vercel.app/tutorials) The tutorials include: - TypeScript Packages - React Monorepo - Angular Monorepo In the future, we will link directly from the sidebar to the in-browser tutorials.
16 lines
326 B
CSS
16 lines
326 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;
|
|
}
|