Skip to content

Commit da39f2b

Browse files
committed
feat(ui): Very small UI tweak
Signed-off-by: Jyrki Keisala <[email protected]>
1 parent 196b32a commit da39f2b

File tree

1 file changed

+4
-2
lines changed
  • ui/src/routes/_layout/organizations/$orgId/products/$productId/repositories/$repoId/_layout/runs/$runIndex/rule-violations

1 file changed

+4
-2
lines changed

ui/src/routes/_layout/organizations/$orgId/products/$productId/repositories/$repoId/_layout/runs/$runIndex/rule-violations/index.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,14 @@ type Props = {
134134
};
135135
const RuleViolationDetailsComponent = ({ details }: Props) => {
136136
return (
137-
<DialogContent className={'max-h-96 overflow-y-scroll lg:max-w-screen-lg'}>
137+
<DialogContent
138+
className={'max-h-96 overflow-y-scroll text-sm lg:max-w-screen-lg'}
139+
>
138140
<DialogHeader>
139141
<DialogTitle>{details.rule}</DialogTitle>
140142
<DialogDescription>{details?.message}</DialogDescription>
141143
</DialogHeader>
142-
<div className='grid grid-cols-8 gap-2 text-sm'>
144+
<div className='grid grid-cols-8 gap-2'>
143145
<div className='col-span-2 font-semibold'>License:</div>
144146
<div className='col-span-6'>{details.license}</div>
145147
<div className='col-span-2 font-semibold'>License source:</div>

0 commit comments

Comments
 (0)