Skip to content

Commit

Permalink
feat: update story title color (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregogun committed Apr 26, 2022
1 parent c0614bb commit baaa19a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/purple-mangos-sit.md
@@ -0,0 +1,5 @@
---
'@sigle/app': patch
---

Update title color on public story cards.
4 changes: 1 addition & 3 deletions sigle/src/modules/publicHome/components/PublicStoryItem.tsx
Expand Up @@ -30,8 +30,6 @@ const StoryContainer = styled.div<{ siteColor?: string; featured?: boolean }>`
}
`}
&:hover .sigle-story-title {
${({ siteColor }) => (siteColor ? `color: ${siteColor}` : tw`text-pink`)}
}
Expand Down Expand Up @@ -69,7 +67,7 @@ const StoryContainerContent = styled.div<{
`;

const StoryTitle = styled.div`
${tw`text-2xl font-bold no-underline text-black transition-colors duration-200 ease-in-out`};
${tw`text-2xl font-bold no-underline transition-colors duration-200 ease-in-out`};
`;

const StoryDate = styled.div`
Expand Down

0 comments on commit baaa19a

Please sign in to comment.