a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fixed an issue where external link block text is underlining on hover

celine 49ba5a0e 2eea1e63

+2 -3
-1
app/globals.css
··· 72 72 a { 73 73 @apply text-accent-contrast; 74 74 @apply hover:cursor-pointer; 75 - 76 75 @apply no-underline; 77 76 } 78 77
+2 -2
components/Blocks/ExternalLinkBlock.tsx
··· 10 10 let url = useEntity(props.entityID, "link/url"); 11 11 12 12 let selected = useUIState((s) => 13 - s.selectedBlock.find((b) => b.value === props.entityID) 13 + s.selectedBlock.find((b) => b.value === props.entityID), 14 14 ); 15 15 let permission = useEntitySetContext().permissions.write; 16 16 let { rep } = useReplicache(); ··· 21 21 target="_blank" 22 22 className={` 23 23 externalLinkBlock flex relative group/linkBlock 24 - h-[104px] w-full bg-bg-card overflow-hidden text-primary no-underline 24 + h-[104px] w-full bg-bg-card overflow-hidden text-primary hover:no-underline no-underline 25 25 border hover:border-accent-contrast outline outline-1 hover:outline-accent-contrast rounded-lg shadow-sm 26 26 ${selected ? "outline-accent-contrast border-accent-contrast" : "outline-transparent border-border-light"} 27 27 `}