Changeset 6fcd0cf in Klonkt


Ignore:
Timestamp:
06/20/2026 01:16:16 AM (3 months ago)
Author:
roboburr <roboburr@…>
Branches:
main
Children:
36afccd
Parents:
3ca24f9
Message:

fix(account): "Link Google account" button text readable (white text)

As an <a> element, .ax-btn-primary received the accent color via the
global a:hover rule → invisible text on an accent button. White text is
now forced (including on hover).

Co-Authored-By: Claude <noreply@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/views/pages/account.ejs

    r3ca24f9 r6fcd0cf  
    280280.ax-btn:hover { border-color: var(--accent); }
    281281.ax-btn-secondary { background: var(--paper-2); }
    282 .ax-btn-primary { background: var(--accent); color: white; border-color: var(--accent); }
    283 .ax-btn-primary:hover { opacity: 0.92; border-color: var(--accent); }
     282.ax-btn-primary, a.ax-btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
     283.ax-btn-primary:hover, a.ax-btn-primary:hover { opacity: 0.92; border-color: var(--accent); color: #fff; }
    284284
    285285/* ─── Profile ID row ──────────────────────────────────────────── */
Note: See TracChangeset for help on using the changeset viewer.