Skip to content

Commit

Permalink
Merge pull request #23 from zackha/development
Browse files Browse the repository at this point in the history
fix: ui fix
  • Loading branch information
zackha authored Jan 31, 2025
2 parents 49881eb + 4dcf639 commit e5dce45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/HabitCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ const { mutate: toggleTodayCompletion } = useMutation({
</div>
<ContentBox class="flex flex-col gap-2 bg-white/10 p-4 backdrop-blur-2xl dark:bg-neutral-200/5">
<div class="text-xs font-medium text-white/50">{{ format(habit.createdAt, 'MMM d, yyyy') }}</div>
<div class="max-h-[calc(100vh-19rem)] overflow-y-auto">
<div class="max-h-[calc(100vh-23rem)] overflow-y-auto">
<UTextarea v-if="editingHabit === habit.id" v-model="edit.description" autoresize />
<div v-else class="prose prose-sm prose-invert" v-html="renderMarkdown(habit.description || '')"></div>
</div>
Expand Down

0 comments on commit e5dce45

Please sign in to comment.