Skip to content

Commit

Permalink
fix: small ui fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zackha committed Jan 30, 2025
1 parent 289213a commit 073838e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ useSeoMeta({
ogImage: '/social-card.png',
twitterImage: '/social-card.png',
ogType: 'website',
ogUrl: 'https://habit.vercel.app',
ogUrl: 'https://habit.nuxt.dev',
ogSiteName: 'Habit',
twitterCreator: '@ZHatlen',
twitterSite: '@ZHatlen',
Expand Down
2 changes: 1 addition & 1 deletion app/components/HabitCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const { mutate: toggleTodayCompletion } = useMutation({
</script>

<template>
<ContentBox class="mx-4 mb-4 flex cursor-pointer gap-3 bg-neutral-400/5 p-3 transition hover:bg-white/5" @click="openHabitModal = true">
<ContentBox class="mx-4 mb-4 active:scale-[.975] flex cursor-pointer gap-3 bg-neutral-400/5 p-3 transition hover:bg-white/5" @click="openHabitModal = true">
<div class="flex flex-1 flex-col justify-center gap-1">
<div class="text-md font-medium text-white">{{ habit.title }}</div>
<div class="line-clamp-3 text-xs text-white/70" v-html="renderMarkdown(habit.description || '')"></div>
Expand Down

0 comments on commit 073838e

Please sign in to comment.