mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 20:59:59 +00:00
58 lines
1.2 KiB
Svelte
58 lines
1.2 KiB
Svelte
<script>
|
|
import { t } from "$lib/i18n/translations";
|
|
|
|
import Omnibox from "$components/save/Omnibox.svelte";
|
|
import Meowbalt from "$components/misc/Meowbalt.svelte";
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>{$t("general.cobalt")}</title>
|
|
</svelte:head>
|
|
|
|
<div id="cobalt-save-container" class="center-column-container">
|
|
<main
|
|
id="cobalt-save"
|
|
tabindex="-1"
|
|
data-first-focus
|
|
data-focus-ring-hidden
|
|
>
|
|
<Meowbalt emotion="smile" />
|
|
<Omnibox />
|
|
</main>
|
|
<div id="terms-note">
|
|
{$t("save.terms.note.agreement")} <a href="/about">{$t("save.terms.note.link")}</a>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
#cobalt-save-container {
|
|
padding: var(--padding);
|
|
overflow: hidden;
|
|
}
|
|
|
|
#cobalt-save {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
gap: 15px;
|
|
}
|
|
|
|
#terms-note {
|
|
bottom: 0;
|
|
color: var(--gray);
|
|
font-size: 13px;
|
|
text-align: center;
|
|
padding-bottom: var(--padding);
|
|
}
|
|
|
|
@media screen and (max-width: 535px) {
|
|
#terms-note {
|
|
font-size: 11px;
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
</style>
|