Skip to content
Permalink
f681d64416
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
30 lines (26 sloc) 656 Bytes
<script>
import IconCobalt from '$components/icons/Cobalt.svelte';
</script>
<div id="cobalt-logo">
<img
src="logos/hydralogo.png"
height="75"
alt="Team Hydra Logo"
aria-hidden="true"
/>
</div>
<style>
#cobalt-logo {
display: flex;
justify-content: center;
align-items: center;
padding: calc(var(--padding) * 2);
/* accommodate space for scaling animation */
padding-bottom: calc(var(--padding) * 2 - var(--sidebar-inner-padding));
}
@media screen and (max-width: 535px) {
#cobalt-logo {
display: none;
}
}
</style>