Fix missing left margin in CongratsPage (#1498)

This commit is contained in:
Henrik Giesel 2021-11-19 02:02:54 +01:00 committed by GitHub
parent 11042a16ce
commit 1a874b184d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,6 +4,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="ts">
import Container from "../components/Container.svelte";
import Col from "../components/Col.svelte";
import type { Scheduler } from "../lib/proto";
import { buildNextLearnMsg } from "./lib";
import { bridgeLink } from "../lib/bridgecommand";
@ -25,7 +26,8 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
});
</script>
<Container class="d-flex justify-content-center pt-3">
<Container --gutter-block="1rem" --gutter-inline="2px" breakpoint="sm">
<Col --col-justify="center">
<div class="congrats">
<h3>{congrats}</h3>
@ -59,6 +61,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
</div>
{/if}
</div>
</Col>
</Container>
<style lang="scss">