Expected Behavior
The footer links should match the overall theme styling (same text color, no underline unless hovered).
Current Behavior
Some links in the footer appear with default browser styles:
- Blue colored text
- Underlined text
It looks visually inconsistent with the rest of the site.
Steps to Reproduce
- Open the website
- Scroll down to the footer
- Notice the styling of the Documentation/Github/Discord links
Possible Solution
Maybe applying theme-based CSS for footer links could fix it:
footer a {
color: inherit;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
Environment
- OS: Windows 10
- Browser: Chrome (latest)
