QuantumLearner commited on
Commit
24cc33b
·
verified ·
1 Parent(s): 2ccc782

Update .chainlit/custom_style.css

Browse files
Files changed (1) hide show
  1. .chainlit/custom_style.css +28 -20
.chainlit/custom_style.css CHANGED
@@ -1,20 +1,28 @@
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
- }`
 
 
 
 
 
 
 
 
 
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
+ }