Fix author name underline + fix gallery preference being broken (#5337)

This commit is contained in:
Prospector
2026-02-08 17:01:23 -08:00
committed by GitHub
parent a3bc35c303
commit 4eb0f0c206
3 changed files with 9 additions and 6 deletions
@@ -182,7 +182,7 @@ const props = defineProps<{
}>()
const baseCardStyle =
'w-full h-full border-[1px] border-solid border-surface-4 overflow-hidden bg-bg-raised rounded-2xl group transition-all smart-clickable:outline-on-focus smart-clickable:highlight-on-hover'
'w-full h-full border-[1px] border-solid border-surface-4 overflow-hidden bg-surface-3 rounded-2xl transition-all smart-clickable:outline-on-focus smart-clickable:highlight-on-hover'
const updatedDate = computed(() =>
props.dateUpdated ? dayjs(props.dateUpdated).toDate() : undefined,