Skip to content

Commit 63f4abf

Browse files
committed
chore(action.yml): downgrade pnpm version to 8
1 parent 5a928c2 commit 63f4abf

File tree

4 files changed

+12770
-15330
lines changed

4 files changed

+12770
-15330
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
- name: Setup pnpm
2626
uses: pnpm/[email protected]
2727
with:
28-
version: 9
28+
version: 8
2929

3030
- name: Use Node
3131
uses: actions/setup-node@v4

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"test.headless.ci": "nx component-test-ci headless",
4141
"test.utils": "nx test utils"
4242
},
43-
"packageManager": "pnpm@9.1.1",
43+
"packageManager": "pnpm@8.15.8",
4444
"devDependencies": {
4545
"@axe-core/playwright": "4.9.0",
4646
"@builder.io/qwik": "^1.5.4",

packages/kit-styled/src/templates/global.css

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1240,11 +1240,19 @@
12401240

12411241
*::-webkit-scrollbar-thumb {
12421242
/* Thumb color */
1243-
background-color: var(--qwikui-slate-500);
1243+
background-color: hsla(var(--foreground) / 0.25);
12441244
border-radius: 0.5rem;
12451245
background-clip: padding-box;
1246-
border-left: 0.3rem solid transparent;
1247-
border-right: 0.3rem solid transparent;
1246+
border-left: 0.15rem solid transparent;
1247+
border-right: 0.15rem solid transparent;
1248+
}
1249+
1250+
.navigation-docs::-webkit-scrollbar-thumb {
1251+
background-color: hsla(var(--foreground) / 0.1);
1252+
}
1253+
1254+
.dark .navigation-docs::-webkit-scrollbar-thumb {
1255+
background-color: hsla(var(--foreground) / 0.2);
12481256
}
12491257

12501258
*::-webkit-scrollbar-corner {
@@ -1256,10 +1264,6 @@
12561264
border-left: 1px solid var(--qwikui-slate-300);
12571265
}
12581266

1259-
.dark *::-webkit-scrollbar-thumb {
1260-
background-color: var(--qwikui-slate-500);
1261-
}
1262-
12631267
.dark *::-webkit-scrollbar-track {
12641268
background: transparent;
12651269
border-left: 1px solid var(--qwikui-slate-800);
@@ -1272,7 +1276,7 @@
12721276
}
12731277

12741278
.code-example *::-webkit-scrollbar-thumb {
1275-
background: var(--qwikui-slate-500);
1279+
background-color: var(--qwikui-slate-600);
12761280
border-radius: 0.5rem;
12771281
background-clip: padding-box;
12781282
}
@@ -1290,6 +1294,10 @@
12901294
.dark .note-link a {
12911295
border-bottom: 1px solid white !important;
12921296
}
1297+
1298+
.gif-container {
1299+
border-radius: var(--border-radius);
1300+
}
12931301
}
12941302

12951303
:root {

0 commit comments

Comments
 (0)