fix: improve phone/contact link visibility in novo theme

- Changed contact labels from green to text-secondary color
- Changed contact values/links from green to text-primary with hover effect
- Added proper hover state for all contact card child elements
- Fixed readability issue where green text was on green-tinted background
This commit is contained in:
sdarbinyan
2026-01-22 23:28:31 +04:00
parent 4aea97aa08
commit cb895f68cd
4 changed files with 90 additions and 11 deletions

View File

@@ -27,14 +27,17 @@
strong {
display: block;
margin-bottom: 0.25rem;
color: var(--text-primary);
color: var(--text-secondary);
font-size: 0.85rem;
}
a {
color: var(--primary-color);
color: var(--text-primary);
text-decoration: none;
font-weight: 500;
&:hover {
color: var(--primary-color);
text-decoration: underline;
}
}