We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5743252 commit 76e3804Copy full SHA for 76e3804
src/pages/ResultPage.tsx
@@ -200,15 +200,20 @@ export function ResultPage({
200
.map((s, i) => ({ i, a: alts[i][s] }))
201
.filter(a => a.a < 0)
202
.map(({ i }, n) => (
203
- <li key={i}>
204
- <span>{n + 1}.</span>
+ <li key={i} style={{ display: 'inline-flex' }}>
+ <span style={{ flex: 'none', paddingRight: 5 }}>
205
+ {n + 1}.
206
+ </span>
207
<span
208
dangerouslySetInnerHTML={{
209
__html: t(questions[i].suggess),
210
}}
211
/>
212
</li>
213
))}
214
+ <li>
215
+ <br />
216
+ </li>
217
{
218
<li>
219
0 commit comments