Skip to content

Commit

Permalink
Style improvement from entry card
Browse files Browse the repository at this point in the history
  • Loading branch information
angristan committed Dec 20, 2024
1 parent 24146e8 commit cc3f9ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion resources/js/Pages/Feeds.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
}

.entry {
margin-top: 1em;
margin-top: 0.8rem;
margin-right: 1em;
}

Expand Down
5 changes: 2 additions & 3 deletions resources/js/Pages/Feeds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,13 @@ const EntryListPane = function EntryListPane({
>
<Card
shadow="sm"
padding="lg"
radius="md"
radius="sm"
withBorder
className={`${classes.entryCard} ${entry.id === currentEntryID ? classes.activeEntry : ''}`}
>
<div>
<div className={classes.entryTitle}>{entry.title}</div>
<Flex justify="space-between">
<Flex justify="space-between" mt={5}>
<Flex>
<Image
src={entry.feed.favicon_url}
Expand Down

0 comments on commit cc3f9ba

Please sign in to comment.