2024-06-15 15:39:34 +01:00
|
|
|
<script>
|
|
|
|
import IconCobalt from '$lib/icons/Cobalt.svelte';
|
|
|
|
</script>
|
|
|
|
|
2024-06-14 11:33:01 +01:00
|
|
|
<div id="cobalt-logo">
|
2024-06-15 15:39:34 +01:00
|
|
|
<IconCobalt />
|
2024-06-14 11:33:01 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
#cobalt-logo {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2024-06-14 16:48:57 +01:00
|
|
|
padding: calc(var(--padding) * 2 - 2px);
|
2024-06-14 11:33:01 +01:00
|
|
|
}
|
2024-07-03 18:54:44 +01:00
|
|
|
|
2024-06-14 12:33:33 +01:00
|
|
|
@media screen and (max-width: 535px) {
|
|
|
|
#cobalt-logo {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2024-06-14 11:33:01 +01:00
|
|
|
</style>
|