File size: 677 Bytes
b5f89d0
 
 
 
 
 
0f64b14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* custom_style.css */

/* Adjust logo dimensions */
#logo img {
    width: 100px;  /* Adjust the width as needed */
    height: auto;  /* Maintain aspect ratio */
}

/* Hide the "Built with Chainlit" footer */
footer {
    display: none !important; /* Ensure it is completely hidden */
}

/* Remove any watermarks */
.watermark {
    display: none !important; /* Ensure it is not displayed */
}

/* Hide specific GitHub attribution links */
a[href*='https://github.com/Chainlit/chainlit'] {
    display: none !important; /* Completely remove the link from view */
}

/* Disable interactions for all links (use sparingly) */
a {
    pointer-events: none;
    cursor: default;
}