diff --git a/src/app.pcss b/src/app.pcss index 1a7b7cf..9e142a0 100644 --- a/src/app.pcss +++ b/src/app.pcss @@ -2,3 +2,25 @@ @tailwind base; @tailwind components; @tailwind utilities; + +/* scrollbar */ +::-webkit-scrollbar { + width: 8px; + height: 8px; +} + +/* Track styling */ +::-webkit-scrollbar-track { + background: rgb(31, 41, 55, 0.4); +} + +/* Handle styling */ +::-webkit-scrollbar-thumb { + background: rgb(55, 65, 81, 0.8); + border-radius: 10px; +} + +/* Handle hover effect */ +::-webkit-scrollbar-thumb:hover { + background: rgb(55, 65, 81, 0.6); +} diff --git a/src/lib/components/Canvas.svelte b/src/lib/components/Canvas.svelte index d80f2a2..70b2d4f 100644 --- a/src/lib/components/Canvas.svelte +++ b/src/lib/components/Canvas.svelte @@ -615,6 +615,9 @@ $profileConfig.mangaStats, $profileConfig.flip ); + + if ($profileConfig.cardsStats) + await drawWaifuProfile(context, true, shadowsOpacity, flip, $profileConfig.karma); break; case ProfileTypeEnum.Img: default: diff --git a/src/lib/components/ChooseCustomBorder.svelte b/src/lib/components/ChooseCustomBorder.svelte index 2c4765c..c8a31f2 100644 --- a/src/lib/components/ChooseCustomBorder.svelte +++ b/src/lib/components/ChooseCustomBorder.svelte @@ -39,6 +39,7 @@ checked={$profileConfig.hasRoundAvatar} on:change={profileConfig.switchRoundAvatar} disabled={$profileConfig.avatarBorder != AvatarBorder.None} + class={`dark:text-gray-${$profileConfig.avatarBorder != AvatarBorder.None ? "500" : "300"}`} > Okrągły Awatar diff --git a/src/lib/components/Footer.svelte b/src/lib/components/Footer.svelte index d4cda3e..56e9f6a 100644 --- a/src/lib/components/Footer.svelte +++ b/src/lib/components/Footer.svelte @@ -4,7 +4,7 @@ import { GithubSolid, DiscordSolid } from 'flowbite-svelte-icons'; -