Skip to content

Commit 591ff9b

Browse files
committed
Add name + logo combo
1 parent 60c3739 commit 591ff9b

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

api/pkg/emails/hermes_theme.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ func (dt *hermesTheme) HTMLTemplate() string {
291291
<td class="email-masthead">
292292
<a class="email-masthead_name" href="{{.Hermes.Product.Link}}" target="_blank">
293293
{{ if .Hermes.Product.Logo }}
294-
<img src="{{.Hermes.Product.Logo | url }}" class="email-logo" />
294+
<img src="{{.Hermes.Product.Logo | url }}" class="email-logo" /> {{ .Hermes.Product.Name }}
295295
{{ else }}
296296
{{ .Hermes.Product.Name }}
297297
{{ end }}

web/pages/index.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@
1111
'text-h5': $vuetify.breakpoint.mdAndDown,
1212
}"
1313
>
14-
<v-avatar size="70" class="mt-4">
14+
<v-avatar
15+
v-if="$vuetify.breakpoint.lgAndUp"
16+
size="70"
17+
class="mt-4"
18+
>
1519
<v-img
1620
class="mb-4"
1721
contain

0 commit comments

Comments
 (0)