diff --git a/src/components/molecules/AddOnOption/AddOnOption.tsx b/src/components/molecules/AddOnOption/AddOnOption.tsx index ffbbc07..0d28088 100644 --- a/src/components/molecules/AddOnOption/AddOnOption.tsx +++ b/src/components/molecules/AddOnOption/AddOnOption.tsx @@ -99,11 +99,11 @@ export const AddOnOption = React.forwardRef( ...(Array.isArray(sx) ? sx : [sx]), ]} > - {/* Top row: name + switch pinned top-right */} + {/* Top row: name + switch */} ( /> - {/* Price — own row below heading */} + {/* Price — tucks directly under heading */} {price != null && ( ${price.toLocaleString('en-AU')} @@ -160,12 +159,12 @@ export const AddOnOption = React.forwardRef( {maxDescriptionLines && isClamped && ( { e.stopPropagation(); setExpanded((prev) => !prev); }} - sx={{ mt: 0.5, fontSize: 'inherit' }} + sx={{ mt: 0.5, color: 'text.secondary', fontWeight: 400 }} > {expanded ? 'View less' : 'View more'} diff --git a/src/components/molecules/ServiceOption/ServiceOption.tsx b/src/components/molecules/ServiceOption/ServiceOption.tsx index bb206d4..3bce4a8 100644 --- a/src/components/molecules/ServiceOption/ServiceOption.tsx +++ b/src/components/molecules/ServiceOption/ServiceOption.tsx @@ -136,12 +136,12 @@ export const ServiceOption = React.forwardRef { e.stopPropagation(); setExpanded((prev) => !prev); }} - sx={{ mt: 0.5, fontSize: 'inherit' }} + sx={{ mt: 0.5, color: 'text.secondary', fontWeight: 400 }} > {expanded ? 'View less' : 'View more'}