Skip to content

Commit 65883ec

Browse files
💄 Style title and step title correctly
1 parent 4c6a65d commit 65883ec

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/Summary.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ const Summary = ({ submission, onConfirm, onShowStep }) => {
8383

8484
return (
8585
<form onSubmit={onSubmit}>
86-
<h2>Controleer en bevestig</h2>
87-
86+
<h1 className="openforms-title">Controleer en bevestig</h1>
8887
{value && value.map((step, index) => (
88+
8989
<Fragment key={index}>
9090
<div style={{display: 'flex', alignItems: 'baseline', justifyContent: 'space-between'}}>
91-
<h3>{step.title}</h3>
91+
<h3 className="openforms-caption">{step.title}</h3>
9292
<Button variant="anchor" component="a" onClick={_ => onShowStep(step.submissionStep)}>
9393
Wijzig {step.title.toLocaleLowerCase()}
9494
</Button>
@@ -97,7 +97,6 @@ const Summary = ({ submission, onConfirm, onShowStep }) => {
9797
form={step.configuration}
9898
submission={step.data}
9999
options={{renderMode: 'html', template: 'overview'}}
100-
// options={{renderMode: 'html'}}
101100
/>
102101
</Fragment>
103102
))}

0 commit comments

Comments
 (0)