2024-06-14 16:48:57 +01:00
|
|
|
<script>
|
|
|
|
import Omnibox from "../components/save/Omnibox.svelte";
|
2024-06-16 15:32:09 +01:00
|
|
|
import MeowbaltLoaf from "../components/meowbalt/MeowbaltLoaf.svelte";
|
2024-06-14 16:48:57 +01:00
|
|
|
</script>
|
|
|
|
|
2024-06-16 15:32:09 +01:00
|
|
|
<div id="cobalt-save-container" class="center-column-container">
|
2024-06-14 16:48:57 +01:00
|
|
|
<main id="cobalt-save">
|
2024-06-16 15:32:09 +01:00
|
|
|
<MeowbaltLoaf />
|
2024-06-14 16:48:57 +01:00
|
|
|
<Omnibox />
|
|
|
|
</main>
|
|
|
|
<div id="terms-note">
|
|
|
|
by continuing you agree to terms and ethics of use
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
#cobalt-save {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
gap: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#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-14 16:48:57 +01:00
|
|
|
</style>
|