Skip to content

Commit 16fd8d2

Browse files
committed
chore(deps): integrate 3rd-partyy inner-border tw plugin
1 parent 565b6b5 commit 16fd8d2

File tree

4 files changed

+44
-30
lines changed

4 files changed

+44
-30
lines changed

frontend/package-lock.json

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

frontend/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"@coreproject-moe/icons": "^0.0.67",
1919
"@dotenvx/dotenvx": "^1.28.0",
2020
"@playwright/test": "^1.45.3",
21+
"@quibble-dev/tailwindcss-inner-border": "^0.0.4",
2122
"@sveltejs/adapter-auto": "^3.0.0",
2223
"@sveltejs/kit": "^2.8.3",
2324
"@sveltejs/vite-plugin-svelte": "^4.0.0",

frontend/src/routes/(app)/q/[name]/+page.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@
6565
class="relative flex h-40 flex-col gap-2 overflow-hidden rounded-2xl border border-neutral p-2 transition-colors hover:bg-base-200"
6666
>
6767
<div
68-
class="flex-1 rounded-xl bg-cover bg-center outline outline-1 outline-offset-[-1px] outline-base-content/15"
68+
class="flex-1 rounded-xl bg-cover bg-center inner-border
69+
inner-border-base-content/15"
6970
class:bg-neutral={!quib.cover}
7071
style="background-image: url({quib.cover});"
7172
></div>

frontend/tailwind.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import forms from '@tailwindcss/forms';
33
import typography from '@tailwindcss/typography';
44
import daisyui from 'daisyui';
55
import tailwindScroll from 'tailwind-scrollbar';
6+
import innerBorder from '@quibble-dev/tailwindcss-inner-border';
67

78
import type { Config } from 'tailwindcss';
89

@@ -22,5 +23,5 @@ export default {
2223
logs: false
2324
},
2425

25-
plugins: [typography, forms, aspectRatio, daisyui, tailwindScroll]
26+
plugins: [typography, forms, aspectRatio, daisyui, tailwindScroll, innerBorder]
2627
} satisfies Config;

0 commit comments

Comments
 (0)