Files
cobalt/web/src/components/sidebar/CobaltLogo.svelte
wukko 1371615b96 web: move all strings to i18n & improve a11y
- omnibox is now fully usable with a screen reader
- back button is now interpreted as such
- subtext now accepts line breaks
2024-07-03 23:54:44 +06:00

23 lines
411 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>