web/SidebarTab: never break the tab name line
Some checks are pending
CodeQL / Analyze (${{ matrix.language }}) (none, javascript-typescript) (push) Waiting to run
Run tests / check lockfile correctness (push) Waiting to run
Run tests / web sanity check (push) Waiting to run
Run tests / api sanity check (push) Waiting to run

This commit is contained in:
wukko 2025-01-11 21:07:44 +06:00
parent 4b5fd1cda0
commit 0749106b96
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2

View file

@ -48,7 +48,7 @@
{/if}
<svelte:component this={icon} />
{$t(`tabs.${name}`)}
<span class="tab-title">{$t(`tabs.${name}`)}</span>
</a>
<style>
@ -108,6 +108,10 @@
opacity: 0.7;
}
.tab-title {
white-space: nowrap;
}
@keyframes pressButton {
0% {
transform: scale(0.9);