Skip to content

Commit 86aae21

Browse files
Merge pull request #178 from TheDragonCode/6.x
Fixed an issue with displaying colors
2 parents 499b88a + ff83111 commit 86aae21

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup Node.js
2727
uses: actions/setup-node@v4
2828
with:
29-
node-version: '20'
29+
node-version: '22'
3030

3131
- name: Cache dependencies
3232
uses: actions/cache@v4

docs/.vuepress/styles/index.scss

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@charset "UTF-8";
22

3-
@import 'fonts';
3+
@import "fonts";
44

55
:root {
66
--content-width: 800px;
@@ -11,3 +11,7 @@
1111
font-family: Nunito, system-ui, sans-serif;
1212
}
1313
}
14+
15+
.line {
16+
color: rgb(235 235 245 / 86%);
17+
}

package.json

+9-6
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,16 @@
1717
"url": "git+ssh://[email protected]/TheDragonCode/laravel-actions.git"
1818
},
1919
"devDependencies": {
20-
"@vuepress/bundler-vite": "^2.0.0-rc.9",
21-
"@vuepress/theme-default": "^2.0.0-rc.20",
22-
"@vueuse/core": "^7.5.5",
23-
"dotenv": "^15.0.0",
24-
"vuepress": "^2.0.0-rc.9"
20+
"@vuepress/bundler-vite": "^2.0.0-rc.15",
21+
"@vuepress/plugin-prismjs": "^2.0.0-rc.43",
22+
"@vuepress/plugin-shiki": "^2.0.0-rc.0",
23+
"@vuepress/theme-default": "^2.0.0-rc.43",
24+
"@vueuse/core": "^7.7.1",
25+
"dotenv": "^16.4.5",
26+
"sass-embedded": "^1.78.0",
27+
"vuepress": "^2.0.0-rc.15"
2528
},
2629
"engines": {
27-
"node": ">=20.11"
30+
"node": ">=22.8"
2831
}
2932
}

0 commit comments

Comments
 (0)