Skip to content

Commit

Permalink
Merge pull request #135 from M3nin0/dev
Browse files Browse the repository at this point in the history
list: fix badge text size
  • Loading branch information
M3nin0 authored Dec 8, 2024
2 parents 298f273 + a7abc0d commit e8fad47
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/components/list/base/EventItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ export const EventItem = ({ eventData }) => {
textAlign={'right'}
only={'tablet computer'}
>
<Label>{eventData.category}</Label>
<Label style={{ fontSize: '11px' }}>
{eventData.category}
</Label>
</Grid.Column>
</Grid.Row>
<Grid.Row verticalAlign={'bottom'}>
Expand Down

0 comments on commit e8fad47

Please sign in to comment.