aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Question.tsx
diff options
context:
space:
mode:
authorGravatar Hassan Abouelela <[email protected]>2021-01-16 22:29:09 +0300
committerGravatar Hassan Abouelela <[email protected]>2021-01-16 22:29:09 +0300
commit2a3300109f41ea597bd299a53ce240a2183f0ae8 (patch)
treebd4b61ff5465def88147f1970cfeeb4f49cb7837 /src/components/Question.tsx
parentPolyfills Smooth Scroll (diff)
Minor Style Adjustments
Minor adjustments following the first round of open feedback. Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'src/components/Question.tsx')
-rw-r--r--src/components/Question.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Question.tsx b/src/components/Question.tsx
index 66c1668..54074f3 100644
--- a/src/components/Question.tsx
+++ b/src/components/Question.tsx
@@ -133,7 +133,7 @@ class RenderedQuestion extends React.Component<QuestionProp> {
`;
return <div css={styles}>
- <h1 css={selectable}>{question.name}</h1>
+ <h1 css={[selectable, css`line-height: 2.5rem;`]}>{question.name}</h1>
{ question.data["text"] ? <h3 css={selectable}>{question.data["text"]}</h3> : "" }
<hr css={css`color: gray; margin: 3rem 0;`}/>
</div>;