Skip to content

Commit

Permalink
💄 Fix overflow of items in RSS widget
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-rw committed Mar 7, 2023
1 parent 13999e4 commit 47cb9cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/widgets/rss/RssWidgetTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ function RssTile({ widget }: RssTileProps) {
/>
</MediaQuery>
)}
<Flex gap={2} direction="column">
<Flex gap={2} direction="column" w="100%">
{item.categories && (
<Flex gap="xs" wrap="wrap" h={20} style={{ overflow: 'hidden' }}>
{item.categories.map((category: any, categoryIndex: number) => (
Expand Down

0 comments on commit 47cb9cd

Please sign in to comment.