1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-05 01:34:43 +00:00

fix: email logo icon displaying too big (#336)

This commit is contained in:
Kyle Mendell
2025-03-14 13:38:27 -05:00
committed by GitHub
parent 42f55e6e54
commit b483e2e92f
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
{{ define "base" }}
<div class="header">
<div class="logo">
<img src="{{ .LogoURL }}" alt="{{ .AppName }}"/>
<img src="{{ .LogoURL }}" alt="{{ .AppName }}" width="32" height="32" style="width: 32px; height: 32px; max-width: 32px;"/>
<h1>{{ .AppName }}</h1>
</div>
<div class="warning">Warning</div>

View File

@@ -1,7 +1,7 @@
{{ define "base" }}
<div class="header">
<div class="logo">
<img src="{{ .LogoURL }}" alt="{{ .AppName }}"/>
<img src="{{ .LogoURL }}" alt="{{ .AppName }}" width="32" height="32" style="width: 32px; height: 32px; max-width: 32px;"/>
<h1>{{ .AppName }}</h1>
</div>
</div>