Files
cobalt/web/src/components/sidebar/CobaltLogo.svelte
wukko 6e8abc62aa web/save: add paste button & dummy mode buttons
tuned default button look, moved custom icons to lib for easy access
2024-06-15 20:39:34 +06:00

22 lines
410 B
Svelte

<script>
import IconCobalt from '$lib/icons/Cobalt.svelte';
</script>
<div id="cobalt-logo">
<IconCobalt />
</div>
<style>
#cobalt-logo {
display: flex;
justify-content: center;
align-items: center;
padding: calc(var(--padding) * 2 - 2px);
}
@media screen and (max-width: 535px) {
#cobalt-logo {
display: none;
}
}
</style>