Make congrats page more balanced

This commit is contained in:
Matthias Metelka 2022-10-21 10:45:39 +02:00
parent d0c3fe1fa9
commit c9ec03efe0

View file

@ -29,7 +29,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
<Container --gutter-block="1rem" --gutter-inline="2px" breakpoint="sm"> <Container --gutter-block="1rem" --gutter-inline="2px" breakpoint="sm">
<Col --col-justify="center"> <Col --col-justify="center">
<div class="congrats"> <div class="congrats">
<h3>{congrats}</h3> <h1>{congrats}</h1>
<p>{nextLearnMsg}</p> <p>{nextLearnMsg}</p>
@ -66,6 +66,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
<style lang="scss"> <style lang="scss">
.congrats { .congrats {
margin-top: 25vh;
max-width: 30em; max-width: 30em;
font-size: var(--base-font-size); font-size: var(--base-font-size);
@ -73,10 +74,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
color: var(--fg-link); color: var(--fg-link);
text-decoration: none; text-decoration: none;
} }
h3 {
font-weight: bold;
}
} }
.description { .description {