style: add hover and active state styling for tech tabs grid headings and descriptions

This commit is contained in:
Ümit Tunç
2026-05-23 17:51:35 +03:00
parent fed91996fc
commit 945e250f17
@@ -280,6 +280,22 @@
border-color: #747ed1 !important;
box-shadow: 0 0.5rem 2rem rgba(116, 126, 209, 0.15) !important;
}
.tech-tabs-grid .nav-link h4 {
color: #343f52 !important;
transition: color 0.3s ease !important;
}
.tech-tabs-grid .nav-link p {
color: #60697b !important;
transition: color 0.3s ease !important;
}
.tech-tabs-grid .nav-link:hover h4,
.tech-tabs-grid .nav-link.active h4 {
color: #747ed1 !important;
}
.tech-tabs-grid .nav-link:hover p,
.tech-tabs-grid .nav-link.active p {
color: #60697b !important;
}
</style>
@endpush