logo in header
This commit is contained in:
parent
608a65cf01
commit
504f06b0d0
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue