diff --git a/app/app.vue b/app/app.vue index 16def45..90f047b 100644 --- a/app/app.vue +++ b/app/app.vue @@ -12,7 +12,7 @@ const emptyHabits = computed(() => habits.value?.length === 0); useHead({ htmlAttrs: { lang: 'en' }, link: [ - { rel: 'icon', href: '/icon.png' }, + { rel: 'icon', href: '/icon.png' }, { rel: 'apple-touch-icon', href: '/icon.png' }, { rel: 'msapplication-TileImage', href: '/icon.png' }, ], @@ -94,4 +94,9 @@ useSeoMeta({ @apply scale-95; } } + +/* ===== Scrollbar CSS ===== */ +* { + scrollbar-color: #555 rgba(0, 0, 0, 0); +} diff --git a/app/components/HabitCard.vue b/app/components/HabitCard.vue index be7aa5e..f9bd38b 100644 --- a/app/components/HabitCard.vue +++ b/app/components/HabitCard.vue @@ -89,9 +89,9 @@ const { mutate: toggleTodayCompletion } = useMutation({