Spaces:
Sleeping
Sleeping
Upload custom_style.css
Browse files- .chainlit/custom_style.css +20 -0
.chainlit/custom_style.css
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* custom_style.css */
|
| 2 |
+
#logo img {
|
| 3 |
+
width: 100px; /* Adjust the width as needed */
|
| 4 |
+
height: auto; /* Maintain aspect ratio */
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
/* Hide the "Built with Chainlit" footer */
|
| 8 |
+
footer {
|
| 9 |
+
display: none;
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
/* Hide the "Built with Chainlit" footer */
|
| 14 |
+
.watermark {
|
| 15 |
+
display: none !important;
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
a[href*='https://github.com/Chainlit/chainlit'] {
|
| 19 |
+
visibility: hidden;
|
| 20 |
+
}`
|