💄 Fix overflow of items in RSS widget

This commit is contained in:
Manuel
2023-03-07 20:09:51 +01:00
parent 13999e44eb
commit 47cb9cd5b6

View File

@@ -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) => (