Skip to content
Permalink
f681d64416
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
62 lines (54 sloc) 1.4 KB
<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>
<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>