mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-21 20:50:40 +00:00
feat: allow user-defined overwriting of the logo size (#38)
This commit is contained in:
parent
18e0e7577a
commit
01e4e6f7a6
@ -2,7 +2,7 @@
|
||||
<div class="container flex align-center justify-center">
|
||||
<a class="gblog-header__link" rel="me" href="{{ .Site.BaseURL }}">
|
||||
<span class="gblog-brand flex align-center justify-center">
|
||||
<img class="gblog-brand__img" src="{{ (default "brand.svg" .Site.Params.logo) | relURL }}" alt="" width=60 height=60>
|
||||
<img class="gblog-brand__img" src="{{ (default "brand.svg" .Site.Params.logo) | relURL }}" alt="">
|
||||
{{ .Site.Title }}
|
||||
</span>
|
||||
{{ with .Site.Params.subtitle }}
|
||||
|
@ -126,6 +126,8 @@ img {
|
||||
|
||||
&__img {
|
||||
margin-right: $padding-16;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user