v3: button styling consistency pass

This commit is contained in:
khannurien
2026-03-21 19:41:15 +00:00
parent 5bed03baa5
commit 39a0cc397e
12 changed files with 42 additions and 26 deletions

View File

@@ -488,14 +488,14 @@ export function UserPublicProfile() {
actions={
<>
<button
className="logout-btn"
className="btn-border"
type="button"
onClick={() => navigate("/")}
>
Back
</button>
{me && (
<button className="logout-btn" type="button" onClick={logout}>
<button className="btn-border" type="button" onClick={logout}>
Log out
</button>
)}
@@ -563,7 +563,7 @@ export function UserPublicProfile() {
{isOwnProfile && (
<div className="profile-own-actions">
<InviteButton />
<button type="button" className="logout-btn" onClick={logout}>
<button type="button" className="btn-border" onClick={logout}>
Log out
</button>
</div>