From ff83111131aa1cab132b3d925c9f3be266f45faa Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Thu, 12 Sep 2024 22:13:26 +0300 Subject: [PATCH] Fixed an issue with displaying colors --- .github/workflows/docs.yml | 2 +- docs/.vuepress/styles/index.scss | 6 +++++- package.json | 15 +++++++++------ 3 files changed, 15 insertions(+), 8 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 774b2633..f4dff185 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -26,7 +26,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '20' + node-version: '22' - name: Cache dependencies uses: actions/cache@v4 diff --git a/docs/.vuepress/styles/index.scss b/docs/.vuepress/styles/index.scss index ea2a8670..d3b35c71 100644 --- a/docs/.vuepress/styles/index.scss +++ b/docs/.vuepress/styles/index.scss @@ -1,6 +1,6 @@ @charset "UTF-8"; -@import 'fonts'; +@import "fonts"; :root { --content-width: 800px; @@ -11,3 +11,7 @@ font-family: Nunito, system-ui, sans-serif; } } + +.line { + color: rgb(235 235 245 / 86%); +} diff --git a/package.json b/package.json index 9067ad81..f0f5bb19 100644 --- a/package.json +++ b/package.json @@ -17,13 +17,16 @@ "url": "git+ssh://git@github.com/TheDragonCode/laravel-actions.git" }, "devDependencies": { - "@vuepress/bundler-vite": "^2.0.0-rc.9", - "@vuepress/theme-default": "^2.0.0-rc.20", - "@vueuse/core": "^7.5.5", - "dotenv": "^15.0.0", - "vuepress": "^2.0.0-rc.9" + "@vuepress/bundler-vite": "^2.0.0-rc.15", + "@vuepress/plugin-prismjs": "^2.0.0-rc.43", + "@vuepress/plugin-shiki": "^2.0.0-rc.0", + "@vuepress/theme-default": "^2.0.0-rc.43", + "@vueuse/core": "^7.7.1", + "dotenv": "^16.4.5", + "sass-embedded": "^1.78.0", + "vuepress": "^2.0.0-rc.15" }, "engines": { - "node": ">=20.11" + "node": ">=22.8" } }