Compare commits

...

8 commits

Author SHA1 Message Date
7566503db7 Merge branch 'dev'
Some checks failed
Sync and Deploy Astro Blog / sync-blog-content (push) Has been cancelled
Sync and Deploy Astro Blog / manual-deploy (push) Has been cancelled
Sync and Deploy Astro Blog / build-and-deploy (push) Has been cancelled
2026-04-14 15:48:08 +03:00
d7fa430317 update gh workflow 2026-04-14 15:47:58 +03:00
f4425d8680 Merge branch 'dev' 2026-04-14 15:43:15 +03:00
10cad307eb update gh workflow 2026-04-14 15:43:05 +03:00
975ecf9185 Merge branch 'dev' 2026-04-14 15:37:49 +03:00
ee6112b3f8 revert spinner changes 2026-04-14 15:37:38 +03:00
131a5f8c7c Merge branch 'dev' 2026-04-14 15:32:28 +03:00
b2b7ecb34a udpate scrollbar
fix spinner
2026-04-14 15:32:18 +03:00
3 changed files with 14 additions and 5 deletions

View file

@ -68,6 +68,9 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Install Playwright browsers
run: npx playwright install chromium --with-deps
- name: Create .env file
run: |
cat > .env <<'EOF'
@ -124,6 +127,9 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Install Playwright browsers
run: npx playwright install chromium --with-deps
- name: Create .env file
run: |
cat > .env <<'EOF'

View file

@ -36,12 +36,9 @@
height: 2rem;
display: grid;
place-items: center;
transform:
scale(1.3)
translateY(-70px);
transform: scale(1.3) translateY(-70px);
pointer-events: none;
transition:
transform 160ms linear;
transition: transform 160ms linear;
z-index: 9999;
}

View file

@ -62,6 +62,12 @@ html {
color: #1f2328;
}
html {
scrollbar-gutter: stable;
scrollbar-width: thin;
scrollbar-color: #828282 transparent;
}
body {
margin: 0 auto;
width: 100%;