Spaces:
Sleeping
Sleeping
File size: 1,578 Bytes
43a06dc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
<script>
import { t } from "$lib/i18n/translations";
import Omnibox from "$components/save/Omnibox.svelte";
import Meowbalt from "$components/misc/Meowbalt.svelte";
import SupportedServices from "$components/save/SupportedServices.svelte";
</script>
<svelte:head>
<title>{$t("general.cobalt")}</title>
<meta property="og:title" content={$t("general.cobalt")} />
</svelte:head>
<div id="cobalt-save-container" class="center-column-container">
<SupportedServices />
<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/terms">{$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);
font-weight: 500;
}
@media screen and (max-width: 535px) {
#cobalt-save-container {
padding-top: calc(var(--padding) / 2);
}
#terms-note {
font-size: 11px;
padding-bottom: 0;
}
}
</style>
|