cobalt/web/src/routes/+page.svelte

42 lines
938 B
Svelte
Raw Normal View History

2024-06-14 16:48:57 +01:00
<script>
import Omnibox from "../components/save/Omnibox.svelte";
import MeowbaltLoaf from "../components/meowbalt/MeowbaltLoaf.svelte";
2024-06-14 16:48:57 +01:00
</script>
<div id="cobalt-save-container" class="center-column-container">
2024-06-14 16:48:57 +01:00
<main id="cobalt-save">
<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%;
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);
}
@media screen and (max-width: 535px) {
#terms-note {
font-size: 11px;
padding-bottom: 0;
}
}
2024-06-14 16:48:57 +01:00
</style>