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:
parent
c573ffb8bb
commit
4aa1e6e7da
1 changed files with 3 additions and 1 deletions
|
@ -101,14 +101,16 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.back-link {
|
.back-link {
|
||||||
color: var(--link-color) !important;
|
color: white !important;
|
||||||
background-color: var(--primary-color, #2196F3) !important;
|
background-color: var(--primary-color, #2196F3) !important;
|
||||||
border: none !important;
|
border: none !important;
|
||||||
|
text-decoration: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.back-link:hover {
|
.back-link:hover {
|
||||||
background-color: var(--primary-hover, #1976D2) !important;
|
background-color: var(--primary-hover, #1976D2) !important;
|
||||||
color: white !important;
|
color: white !important;
|
||||||
|
text-decoration: none !important;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue