logo in header

This commit is contained in:
Leif Niemczik 2022-11-18 15:00:31 +01:00
parent 608a65cf01
commit 504f06b0d0

View file

@ -16,6 +16,13 @@ const permaTitle = 'Hacking in Parallel 2022 //// Berlin'
<title>{`${title ? title + ' / ' : ''}${permaTitle}`}</title>
</head>
<body>
{
title && (
<a href='/'>
<img class='logo' src='/design-resources/logo/colored.svg' />
</a>
)
}
<ul class='socials'>
<li class='mastodon'>
<a
@ -82,6 +89,9 @@ const permaTitle = 'Hacking in Parallel 2022 //// Berlin'
overflow-x: hidden;
width: 100%;
}
.logo {
max-width: 12rem;
}
.socials {
list-style: none;
margin: 0;