2024-06-14 16:48:57 +01:00
|
|
|
<script>
|
2024-07-03 18:54:44 +01:00
|
|
|
import { t } from "$lib/i18n/translations";
|
|
|
|
|
2024-06-24 15:23:55 +01:00
|
|
|
import Omnibox from "$components/save/Omnibox.svelte";
|
2024-07-20 15:34:19 +01:00
|
|
|
import Meowbalt from "$components/misc/Meowbalt.svelte";
|
2024-06-14 16:48:57 +01:00
|
|
|
</script>
|
|
|
|
|
2024-06-25 16:01:08 +01:00
|
|
|
<svelte:head>
|
2024-07-03 18:54:44 +01:00
|
|
|
<title>{$t("general.cobalt")}</title>
|
2024-06-25 16:01:08 +01:00
|
|
|
</svelte:head>
|
|
|
|
|
2024-06-16 15:32:09 +01:00
|
|
|
<div id="cobalt-save-container" class="center-column-container">
|
2024-07-23 09:06:44 +01:00
|
|
|
<main id="cobalt-save" data-first-focus tabindex="-1">
|
2024-07-20 15:34:19 +01:00
|
|
|
<Meowbalt emotion="smile" />
|
2024-06-14 16:48:57 +01:00
|
|
|
<Omnibox />
|
|
|
|
</main>
|
|
|
|
<div id="terms-note">
|
2024-07-13 08:45:53 +01:00
|
|
|
{$t("save.terms.note.agreement")} <a href="/about">{$t("save.terms.note.link")}</a>
|
2024-06-14 16:48:57 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
2024-06-25 09:50:59 +01:00
|
|
|
#cobalt-save-container {
|
|
|
|
padding: var(--padding);
|
2024-06-25 10:54:33 +01:00
|
|
|
overflow: hidden;
|
2024-06-25 09:50:59 +01:00
|
|
|
}
|
|
|
|
|
2024-06-14 16:48:57 +01:00
|
|
|
#cobalt-save {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2024-06-17 14:10:10 +01:00
|
|
|
gap: 15px;
|
2024-06-14 16:48:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#terms-note {
|
|
|
|
bottom: 0;
|
|
|
|
color: var(--gray);
|
|
|
|
font-size: 13px;
|
|
|
|
text-align: center;
|
|
|
|
padding-bottom: var(--padding);
|
|
|
|
}
|
2024-06-17 13:52:18 +01:00
|
|
|
|
|
|
|
@media screen and (max-width: 535px) {
|
|
|
|
#terms-note {
|
|
|
|
font-size: 11px;
|
2024-06-17 14:41:45 +01:00
|
|
|
padding-bottom: 0;
|
2024-06-17 13:52:18 +01:00
|
|
|
}
|
|
|
|
}
|
2024-06-14 16:48:57 +01:00
|
|
|
</style>
|