We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 643f0e3 commit 52b13a0Copy full SHA for 52b13a0
openbas-front/src/admin/components/common/injects/ResponsePie.tsx
@@ -125,7 +125,7 @@ const ResponsePie: FunctionComponent<Props> = ({
125
return (
126
<div style={{
127
display: 'grid',
128
- width: isReducedView ? '70%' : '100%',
+ width: isReducedView ? '80%' : '100%',
129
gridTemplateColumns: '33% 33% 33%',
130
}}
131
>
@@ -142,7 +142,11 @@ const ResponsePie: FunctionComponent<Props> = ({
142
startIcon={<InfoOutlined />}
143
color="primary"
144
component={Link}
145
- style={{ gridColumnStart: 3 }}
+ style={{
146
+ gridColumnStart: 3,
147
+ textAlign: 'center',
148
+ fontSize: 'clamp(0.75rem, 0.5vw, 1rem)',
149
+ }}
150
to={humanValidationLink}
151
152
{`${pending.length} ${t('validations needed')}`}
0 commit comments