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