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

@@ -391,20 +391,22 @@
transform: translateY(-2px);
box-shadow: var(--shadow-sm);
strong, p, a {
*, strong, p, a, .contact-label, .contact-value {
color: white !important;
}
}
strong {
strong, .contact-label {
display: block;
color: var(--primary-color);
color: var(--text-secondary);
margin-bottom: 0.5rem;
font-size: 0.85rem;
}
p, a {
p, a, .contact-value {
margin: 0;
color: var(--text-primary);
font-weight: 500;
}
}
}