Spaces:
Sleeping
Sleeping
Update public/custom.css
Browse files- public/custom.css +6 -5
public/custom.css
CHANGED
|
@@ -30,15 +30,16 @@ a[href*='https://github.com/Chainlit/chainlit'] {
|
|
| 30 |
/* Target Hugging Face URLs specifically */
|
| 31 |
a[href*='https://quantumlearner-space39.hf.space'] {
|
| 32 |
text-decoration: none; /* Remove any underlines or styles */
|
| 33 |
-
color: inherit; /*
|
|
|
|
| 34 |
}
|
| 35 |
|
| 36 |
-
/* Suppress URL display without
|
| 37 |
a {
|
| 38 |
-
cursor: pointer; /*
|
| 39 |
}
|
| 40 |
|
| 41 |
-
/*
|
| 42 |
a:hover {
|
| 43 |
-
text-decoration: none; /*
|
| 44 |
}
|
|
|
|
| 30 |
/* Target Hugging Face URLs specifically */
|
| 31 |
a[href*='https://quantumlearner-space39.hf.space'] {
|
| 32 |
text-decoration: none; /* Remove any underlines or styles */
|
| 33 |
+
color: inherit; /* Keep the text styling consistent */
|
| 34 |
+
pointer-events: auto; /* Ensure links are clickable */
|
| 35 |
}
|
| 36 |
|
| 37 |
+
/* Suppress URL display without affecting interaction */
|
| 38 |
a {
|
| 39 |
+
cursor: pointer; /* Ensure interactive links look clickable */
|
| 40 |
}
|
| 41 |
|
| 42 |
+
/* Optional: Customize hover styling */
|
| 43 |
a:hover {
|
| 44 |
+
text-decoration: none; /* Customize hover styling */
|
| 45 |
}
|