Skip to content

Commit 1e891bd

Browse files
fix: broken text on Safari
1 parent e4ff594 commit 1e891bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/src/dashboard/parts/components/RadioBoxes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default function RadioBoxes({ options, value, onChange, label, disabled =
1616
onChange={handleClick}
1717
>
1818

19-
{label && <legend className="uppercase font-semibold text-s text-light-black mb-6">{label}</legend>}
19+
{label && <legend className="uppercase font-semibold text-s text-light-black mb-6 inline-block">{label}</legend>}
2020

2121
{options.map( ( option, index ) => {
2222
const { title, value: buttonValue, description } = option;

0 commit comments

Comments
 (0)