Update assets/custom.css
Browse files- assets/custom.css +7 -0
assets/custom.css
CHANGED
|
@@ -66,9 +66,16 @@ body {
|
|
| 66 |
border: none !important;
|
| 67 |
text-align: left !important;
|
| 68 |
padding-left: 0 !important;
|
|
|
|
| 69 |
}
|
| 70 |
|
| 71 |
.custom-button:hover {
|
| 72 |
color: #116F70 !important;
|
| 73 |
background-color: #DEF4F4 !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
}
|
|
|
|
| 66 |
border: none !important;
|
| 67 |
text-align: left !important;
|
| 68 |
padding-left: 0 !important;
|
| 69 |
+
text-decoration: none !important; /* Remove underline */
|
| 70 |
}
|
| 71 |
|
| 72 |
.custom-button:hover {
|
| 73 |
color: #116F70 !important;
|
| 74 |
background-color: #DEF4F4 !important;
|
| 75 |
+
text-decoration: none !important; /* Ensure no underline on hover */
|
| 76 |
+
}
|
| 77 |
+
|
| 78 |
+
/* Remove underline from all anchor tags within buttons */
|
| 79 |
+
.custom-button a {
|
| 80 |
+
text-decoration: none !important;
|
| 81 |
}
|