Skip to content

Commit c072559

Browse files
authored
fix: Help forum link not showing on mobile (#2049)
Fixes the "Help Forum" link text not showing on smaller screens.
1 parent d119e8f commit c072559

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

frontend/src/index.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,7 @@ export class App extends LiteElement {
244244
<div class="min-w-screen flex min-h-screen flex-col">
245245
${this.renderNavBar()} ${this.renderAlertBanner()}
246246
<main class="relative flex flex-auto">${this.renderPage()}</main>
247-
<div class="mt-7 border-t border-neutral-100">
248-
${this.renderFooter()}
249-
</div>
247+
<div class="border-t border-neutral-100">${this.renderFooter()}</div>
250248
</div>
251249
252250
<sl-dialog
@@ -611,7 +609,7 @@ export class App extends LiteElement {
611609
rel="noopener"
612610
>
613611
<sl-icon name="patch-question" class="size-4 text-base"></sl-icon>
614-
<span class="sr-only lg:not-sr-only">${msg("Help Forum")}</span>
612+
${msg("Help Forum")}
615613
</a>
616614
</div>
617615
${this.version

0 commit comments

Comments
 (0)