Skip to content

Commit 8c3448d

Browse files
authored
Reduce FormControl Hint and Validation font-size (#831)
* reduce FormControl Hint and Validation font-size to 100 * reduce FormControl Hint and Validation line-height to 100 * reduce FormControl Hint letter-spacing to 100 * github-actions[bot] Regenerated snapshots * add changeset * use Text component * update snapshots * update changeset --------- Co-authored-by: joshfarrant <[email protected]>
1 parent 1f9eb72 commit 8c3448d

13 files changed

+22
-16
lines changed

.changeset/lovely-berries-smash.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@primer/react-brand': minor
3+
---
4+
5+
Reduced the text size in `FormControl.Hint` and `FormControl.Validation` components to match their counterparts in `CheckboxGroup` and `RadioGroup` for improved consistency and visual design accuracy.

packages/react/src/forms/FormControl/FormControl.module.css

+2-10
Original file line numberDiff line numberDiff line change
@@ -66,19 +66,11 @@
6666

6767
.FormControl-hint {
6868
grid-column: 1 / 3;
69-
color: var(--brand-color-text-muted);
7069
display: block;
71-
font-size: var(--brand-text-size-200);
72-
font-weight: var(--base-text-weight-regular);
73-
letter-spacing: var(--brand-text-letterSpacing-200);
74-
line-height: var(--brand-text-lineHeight-200);
7570
}
7671

7772
/*Validation*/
7873
.FormControl-validation {
79-
font-weight: var(--base-text-weight-regular);
80-
font-size: var(--brand-text-size-200);
81-
line-height: var(--brand-text-lineHeight-200);
8274
display: flex;
8375
gap: var(--base-size-4);
8476
}
@@ -93,12 +85,12 @@
9385

9486
.FormControl-validation-success-icon {
9587
position: relative;
96-
top: -1.6px;
88+
top: -1px;
9789
}
9890

9991
.FormControl-validation-error-icon {
10092
position: relative;
101-
top: -1px;
93+
top: -0.5px;
10294
}
10395

10496
.FormControl-validation--animate-in {

packages/react/src/forms/FormControl/FormControl.tsx

+15-6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import {Select} from '../Select'
1111
import {TextInput} from '../TextInput'
1212
import {Textarea} from '../Textarea'
1313
import {Radio} from '../Radio'
14+
import {Text} from '../../Text'
1415

1516
import styles from './FormControl.module.css'
1617

@@ -221,7 +222,10 @@ type FormControlValidationProps = {
221222

222223
const FormControlValidation = ({children, validationStatus, className, ...props}: FormControlValidationProps) => {
223224
return (
224-
<span
225+
<Text
226+
as="span"
227+
size="100"
228+
weight="medium"
225229
className={clsx(
226230
styles['FormControl-validation'],
227231
validationStatus && styles['FormControl-validation--animate-in'],
@@ -241,17 +245,22 @@ const FormControlValidation = ({children, validationStatus, className, ...props}
241245
</span>
242246
)}
243247
{children}
244-
</span>
248+
</Text>
245249
)
246250
}
247251

248252
type FormControlHintProps = PropsWithChildren<BaseProps<HTMLSpanElement>>
249253

250-
const FormControlHint = ({children, className, ...rest}: FormControlHintProps) => {
254+
const FormControlHint = ({className, ...rest}: FormControlHintProps) => {
251255
return (
252-
<span className={clsx(styles['FormControl-hint'], className)} {...rest}>
253-
{children}
254-
</span>
256+
<Text
257+
as="span"
258+
size="100"
259+
weight="medium"
260+
variant="muted"
261+
className={clsx(styles['FormControl-hint'], className)}
262+
{...rest}
263+
/>
255264
)
256265
}
257266

0 commit comments

Comments
 (0)