diff --git a/src/app.css b/src/app.css index bd6213e..4466bd8 100644 --- a/src/app.css +++ b/src/app.css @@ -1,3 +1,18 @@ @tailwind base; @tailwind components; -@tailwind utilities; \ No newline at end of file +@tailwind utilities; + +/* Tailwind doesn't support -webkit-scrollbar selectors :pepoSadge: */ +body::-webkit-scrollbar { + background-color: transparent; + width: 5.5px; +} + +body::-webkit-scrollbar-thumb { + background-color: rgba(255, 255, 255, 0.4); + border-radius: 10px; +} + +body::-webkit-scrollbar-thumb:hover { + background-color: rgba(255, 255, 255, 0.6); +} \ No newline at end of file diff --git a/src/app.html b/src/app.html index 44fba8e..2a90dcc 100644 --- a/src/app.html +++ b/src/app.html @@ -16,7 +16,7 @@ %sveltekit.head% - +
%sveltekit.body%
diff --git a/src/routes/+error.svelte b/src/routes/+error.svelte index fc958ae..9517c04 100644 --- a/src/routes/+error.svelte +++ b/src/routes/+error.svelte @@ -2,10 +2,10 @@ import { page } from '$app/stores'; - + {$page.status} {$page.error?.message || "Unknown error"} - +
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 6d01038..74b0b4b 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -4,7 +4,7 @@ import "../app.css"; -
+
@@ -12,4 +12,5 @@
-
\ No newline at end of file +
+ diff --git a/src/routes/contact/+page.svelte b/src/routes/contact/+page.svelte index cbbfd96..e72eebc 100644 --- a/src/routes/contact/+page.svelte +++ b/src/routes/contact/+page.svelte @@ -2,9 +2,9 @@ import RedirectPage from "$components/RedirectPage.svelte"; - + Boost Notifications - Contact - + \ No newline at end of file diff --git a/src/routes/docs/privacy/+page.svelte b/src/routes/docs/privacy/+page.svelte index 92dfc8e..ed19be6 100644 --- a/src/routes/docs/privacy/+page.svelte +++ b/src/routes/docs/privacy/+page.svelte @@ -2,10 +2,10 @@ import Link from "$components/Link.svelte"; - + Boost Notifications - Privacy Policy - +
diff --git a/src/routes/docs/terms/+page.svelte b/src/routes/docs/terms/+page.svelte index b27346b..985eb9c 100644 --- a/src/routes/docs/terms/+page.svelte +++ b/src/routes/docs/terms/+page.svelte @@ -2,10 +2,10 @@ import Link from "$components/Link.svelte"; - + Boost Notifications - Terms of Service - +
diff --git a/src/routes/feedback/+page.svelte b/src/routes/feedback/+page.svelte index 0bb958d..0c171ae 100644 --- a/src/routes/feedback/+page.svelte +++ b/src/routes/feedback/+page.svelte @@ -2,9 +2,9 @@ import RedirectPage from "$components/RedirectPage.svelte"; - + Boost Notifications - Feedback - + \ No newline at end of file diff --git a/src/routes/invite/+page.svelte b/src/routes/invite/+page.svelte index 3671480..8371d53 100644 --- a/src/routes/invite/+page.svelte +++ b/src/routes/invite/+page.svelte @@ -2,9 +2,9 @@ import RedirectPage from "$components/RedirectPage.svelte"; - + Boost Notifications - Invite - + \ No newline at end of file diff --git a/src/routes/review/+page.svelte b/src/routes/review/+page.svelte index a5110f9..1ae8fbe 100644 --- a/src/routes/review/+page.svelte +++ b/src/routes/review/+page.svelte @@ -2,9 +2,9 @@ import RedirectPage from "$components/RedirectPage.svelte"; - + Boost Notifications - Review - + \ No newline at end of file diff --git a/src/routes/status/+page.svelte b/src/routes/status/+page.svelte index 13623ee..41ea5b5 100644 --- a/src/routes/status/+page.svelte +++ b/src/routes/status/+page.svelte @@ -2,9 +2,9 @@ import RedirectPage from "$components/RedirectPage.svelte"; - + Boost Notifications - Status - + \ No newline at end of file diff --git a/src/routes/support/+page.svelte b/src/routes/support/+page.svelte index 322e44b..9fdf82c 100644 --- a/src/routes/support/+page.svelte +++ b/src/routes/support/+page.svelte @@ -2,9 +2,9 @@ import RedirectPage from "$components/RedirectPage.svelte"; - + Boost Notifications - Support - + \ No newline at end of file diff --git a/src/routes/vote/+page.svelte b/src/routes/vote/+page.svelte index 207ca83..302a8bb 100644 --- a/src/routes/vote/+page.svelte +++ b/src/routes/vote/+page.svelte @@ -2,9 +2,9 @@ import RedirectPage from "$components/RedirectPage.svelte"; - + Boost Notifications - Vote - + \ No newline at end of file