style: remove bottom padding from <header>

The top padding of <main> already provides enough spacing.
This commit is contained in:
TEC 2022-10-16 23:12:59 +08:00
parent e3ade56aba
commit 113423e893
Signed by: tec
SSH Key Fingerprint: SHA256:eobz41Mnm0/iYWBvWThftS0ElEs1ftBr6jamutnXc/A
3 changed files with 8 additions and 1 deletions

View File

@ -8,7 +8,7 @@
</hgroup>
</header>
<main style="padding-top: 0">
<main>
<h2 style="color: var(--primary)"><em>Thank you</em> for taking part in the survey!</h2>
<h5>We hope to see you next year 🙂</h5>
<p>You can view your results as

View File

@ -35,3 +35,7 @@ output {
float: right;
transform: translate(0em, calc(var(--spacing) * 0.15));
}
body > header {
padding-bottom: 0;
}

View File

@ -1827,3 +1827,6 @@ output {
font-weight: 600;
float: right;
transform: translate(0em, calc(var(--spacing) * 0.15)); }
body > header {
padding-bottom: 0; }