Skip to content

Commit

Permalink
Merge pull request #21 from zackha/development
Browse files Browse the repository at this point in the history
fix: small ui fix
  • Loading branch information
zackha authored Jan 30, 2025
2 parents 289213a + 073838e commit 2db7181
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 2db7181

Please sign in to comment.