Skip to content

Commit b35ee8a

Browse files
authored
Merge pull request #8 from nullscript-lang/dev
feat: Add VSCode extension documentation and improve site structure
2 parents dd2b08d + af89723 commit b35ee8a

7 files changed

Lines changed: 1420 additions & 63 deletions

File tree

.vitepress/components/playground.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -573,10 +573,6 @@ onMounted(async () => {
573573
padding: 12px 16px;
574574
font-size: 16px;
575575
}
576-
577-
.code-input {
578-
font-size: 16px;
579-
}
580576
}
581577
582578
@media (max-width: 768px) and (orientation: landscape) {

.vitepress/config.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ export default defineConfig({
5959
{ text: "Playground", link: "/playground" },
6060
{ text: "Reference", link: "/reference/keywords" },
6161
{ text: "CLI", link: "/cli/usage" },
62+
{ text: "VS Code", link: "/guide/vscode-extension" },
6263
],
6364

6465
sidebar: {
@@ -81,6 +82,13 @@ export default defineConfig({
8182
text: "Development",
8283
items: [{ text: "Best Practices", link: "/guide/best-practices" }],
8384
},
85+
{
86+
text: "IDE & Tooling",
87+
items: [
88+
{ text: "VS Code Extension", link: "/guide/vscode-extension" },
89+
{ text: "IDE Support", link: "/guide/ide-support" },
90+
],
91+
},
8492
],
8593
"/examples/": [
8694
{

.vitepress/theme/custom.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
22

33
:root {
4-
--vp-c-brand-1: #f7df1e;
4+
--vp-c-brand-1: #E8C111;
55
--vp-c-brand-2: #e6c800;
6-
--vp-button-brand-bg: #f7df1e;
6+
--vp-button-brand-bg: #E8C111;
77
--vp-button-brand-hover-bg: #e6c800;
88
--vp-button-brand-text: #000;
99
--vp-button-brand-hover-text: #000;
10-
--vp-code-bg: #f7df1e;
10+
--vp-code-bg: #E8C111;
1111
--vp-code-color: #000;
1212

1313
--vp-font-family-base: "Space Grotesk", sans-serif;
@@ -17,7 +17,7 @@
1717
.dark {
1818
--vp-c-neutral-1: #000;
1919
--vp-code-bg: #333;
20-
--vp-code-color: #f7df1e;
20+
--vp-code-color: #E8C111;
2121
}
2222

2323
/* Custom scrollbar */

0 commit comments

Comments
 (0)