Skip to content

Commit

Permalink
Merge pull request #130 from M3nin0/dev
Browse files Browse the repository at this point in the history
list: improve label presentation
  • Loading branch information
M3nin0 authored Nov 20, 2024
2 parents 384e572 + a0b5040 commit 279dc4d
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions src/lib/components/list/base/RecordItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,23 +31,25 @@ export const RecordItem = ({ recordData }) => {
<Grid padded>
<Grid.Row columns={2}>
<Grid.Column
largeScreen={13}
widescreen={13}
computer={13}
largeScreen={11}
widescreen={11}
computer={11}
mobile={16}
tablet={12}
tablet={11}
>
<Header as={'h3'}>{recordData.title}</Header>
</Grid.Column>
<Grid.Column
largeScreen={3}
widescreen={3}
computer={3}
tablet={4}
largeScreen={5}
widescreen={5}
computer={5}
tablet={5}
textAlign={'right'}
only="tablet computer"
>
<Label color={recordLabelColor}>{recordLabel}</Label>
<Label color={recordLabelColor} style={{ fontSize: '11px' }}>
{recordLabel}
</Label>
</Grid.Column>
</Grid.Row>
<Grid.Row columns={2}>
Expand Down

0 comments on commit 279dc4d

Please sign in to comment.