Fix login link size in footer — remove emoji, drop login-link class

The 🔐 emoji was rendering taller than surrounding text causing the
link to appear oversized. Removed emoji and login-link class entirely;
.footer-links a already handles all the needed styling.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
King Omar 2026-06-27 03:10:18 +10:00
parent 5e55dbe900
commit 3b715e34bd
2 changed files with 1 additions and 11 deletions

View file

@ -464,7 +464,7 @@
<footer>
<p>RADICAL - Direct Democracy Movement 🇦🇺 &copy; 2026</p>
<div class="footer-links">
<a href="/login" class="login-link">Login 🔐</a>
<a href="/login">Login</a>
<a href="#about">The Only Policy</a>
<a href="#join">Join The Movement</a>
<a href="#events">Events</a>

View file

@ -1219,13 +1219,3 @@ a {
}
}
.login-link {
color: var(--primary);
text-decoration: none;
font-weight: 500;
font-size: inherit;
}
.login-link:hover {
text-decoration: underline;
}