Design Language tweaks

This commit is contained in:
2026-05-15 01:28:10 +12:00
parent baafafabdb
commit 580d600c47
52 changed files with 3465 additions and 1548 deletions
+14 -1
View File
@@ -32,7 +32,10 @@
<Icon name="fas fa-arrow-left" />
Back to main site
</a>
<button class="ob-footer-logout" on:click={logout} disabled={loggingOut}>
{#if email}
<span class="ob-footer-email">Signed in as {email}</span>
{/if}
<button type="button" class="ob-footer-logout" on:click={logout} disabled={loggingOut}>
<Icon name="fas fa-right-from-bracket" />
{loggingOut ? 'Signing out…' : 'Sign out'}
</button>
@@ -72,6 +75,16 @@
color: #fff;
}
.ob-footer-email {
margin-left: auto;
min-width: 0;
color: rgba(255, 255, 255, 0.62);
font-size: 12px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ob-footer-logout {
display: inline-flex;
align-items: center;