Skip to content

Commit c636272

Browse files
committed
Fix mobile metadata and policy cards
1 parent f4c2648 commit c636272

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.changelog/1861.trivial.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ROFL apps minor UI tweaks

src/app/pages/RoflAppDetailsPage/GridRow.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ export const GridRow: FC<GridRowProps> = ({ label, children, tooltip }) => {
2626

2727
return (
2828
<>
29-
<StyledGrid item xs={12} md={5}>
29+
<StyledGrid item xs={4} md={5}>
3030
{label}:
3131
{tooltip && (
3232
<Tooltip title={tooltip} placement="top">
3333
<InfoIcon htmlColor={COLORS.brandDark} fontSize="small" />
3434
</Tooltip>
3535
)}
3636
</StyledGrid>
37-
<StyledGrid item xs={12} md={7}>
37+
<StyledGrid item xs={8} md={7}>
3838
{children ? <strong>{children}</strong> : t('common.missing')}
3939
</StyledGrid>
4040
</>

0 commit comments

Comments
 (0)