QuantumLearner commited on
Commit
ba3b1dd
·
verified ·
1 Parent(s): e584ddd

Update public/custom.css

Browse files
Files changed (1) hide show
  1. 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; /* Ensure consistent styling */
 
34
  }
35
 
36
- /* Suppress URL display without disabling interaction */
37
  a {
38
- cursor: pointer; /* Show the pointer for interactive elements */
39
  }
40
 
41
- /* Prevent browser status bar from showing URLs */
42
  a:hover {
43
- text-decoration: none; /* Optional: Customize hover styles */
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
  }