Skip to content

Commit e16dda0

Browse files
Update to Tailwind 4.0.8
1 parent d7ec35e commit e16dda0

File tree

5 files changed

+79
-84
lines changed

5 files changed

+79
-84
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"@sveltejs/kit": "^2.17.1",
2525
"@sveltejs/vite-plugin-svelte": "^5.0.3",
2626
"@tailwindcss/typography": "^0.5.16",
27-
"@tailwindcss/vite": "^4.0.5",
27+
"@tailwindcss/vite": "^4.0.8",
2828
"@total-typescript/ts-reset": "^0.6.1",
2929
"@types/eslint-config-prettier": "^6.11.3",
3030
"@types/semver": "^7.5.8",
@@ -54,7 +54,7 @@
5454
"sveltekit-search-params": "^3.0.0",
5555
"tailwind-merge": "^3.0.1",
5656
"tailwind-variants": "^0.3.1",
57-
"tailwindcss": "^4.0.5",
57+
"tailwindcss": "^4.0.8",
5858
"tailwindcss-animate": "^1.0.7",
5959
"tslib": "^2.8.1",
6060
"typescript": "^5.7.3",

pnpm-lock.yaml

Lines changed: 74 additions & 74 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app.css

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
@layer theme, base, components, utilites;
2-
3-
@import "tailwindcss/theme" layer(theme) theme(static);
4-
@import "tailwindcss/preflight" layer(base);
5-
@import "tailwindcss/utilities" layer(utilities);
6-
1+
@import "tailwindcss" theme(static);
72
@plugin "@tailwindcss/typography";
83
@plugin "tailwindcss-animate";
94

src/routes/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@
731731
>
732732
Open on <img src="/github.svg" alt="GitHub" class="ml-1.5 size-5" />
733733
<ArrowUpRight
734-
class="ml-2 size-4 transition-transform duration-300 group-hover:-translate-y-1 group-hover:translate-x-1"
734+
class="ml-2 size-4 transition-transform duration-300 group-hover:translate-x-1 group-hover:-translate-y-1"
735735
/>
736736
</Button>
737737
</div>

src/routes/[pullOrIssue=poi]/[org]/[repo]/[id=number]/PageRenderer.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<Button href={info.html_url} target="_blank" class="group dark:text-black">
443443
Open {type === "pull" ? "pull request" : "issue"} on GitHub
444444
<ArrowUpRight
445-
class="ml-2 size-4 transition-transform duration-300 group-hover:-translate-y-1 group-hover:translate-x-1"
445+
class="ml-2 size-4 transition-transform duration-300 group-hover:translate-x-1 group-hover:-translate-y-1"
446446
/>
447447
</Button>
448448
</div>

0 commit comments

Comments
 (0)