Spaces:
Sleeping
Sleeping
Create custom.css
Browse files- public/custom.css +28 -0
public/custom.css
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* custom_style.css */
|
| 2 |
+
|
| 3 |
+
/* Adjust logo dimensions */
|
| 4 |
+
#logo img {
|
| 5 |
+
width: 100px; /* Adjust the width as needed */
|
| 6 |
+
height: auto; /* Maintain aspect ratio */
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
/* Hide the "Built with Chainlit" footer */
|
| 10 |
+
footer {
|
| 11 |
+
display: none !important; /* Ensure it is completely hidden */
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
/* Remove any watermarks */
|
| 15 |
+
.watermark {
|
| 16 |
+
display: none !important; /* Ensure it is not displayed */
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
/* Hide specific GitHub attribution links */
|
| 20 |
+
a[href*='https://github.com/Chainlit/chainlit'] {
|
| 21 |
+
display: none !important; /* Completely remove the link from view */
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
/* Disable interactions for all links (use sparingly) */
|
| 25 |
+
a {
|
| 26 |
+
pointer-events: none;
|
| 27 |
+
cursor: default;
|
| 28 |
+
}
|