Fix back button text color for proper contrast

- Change back-link text color from blue to white for readability
- Remove text-decoration underline for cleaner button appearance
- Ensure white text shows clearly on blue button background
- Maintain white text color on hover for consistency
- Improve accessibility with proper color contrast ratio
This commit is contained in:
Deco Vander 2025-07-04 13:02:56 -04:00
parent c573ffb8bb
commit 4aa1e6e7da

View file

@ -101,14 +101,16 @@
}
.back-link {
color: var(--link-color) !important;
color: white !important;
background-color: var(--primary-color, #2196F3) !important;
border: none !important;
text-decoration: none !important;
}
.back-link:hover {
background-color: var(--primary-hover, #1976D2) !important;
color: white !important;
text-decoration: none !important;
}
</style>
</head>