File size: 795 Bytes
fb3c53c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
05e9186
 
 
 
 
 
 
 
 
 
55083db
 
 
 
 
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
29
30
31
32
33
34
35
36
/* Hide specific GitHub link */
a[href*='https://github.com/Chainlit/chainlit']
{
  visibility: hidden !important;
}

/* Hide the entire chatbox including icon, placeholder, and all related elements */
div[class*='MuiFormControl-root'] {
  display: none !important;
}

/* Hide the open sidebar button */
#open-sidebar-button {
  display: none !important;
}

/* Hide the logo image by alt attribute */
img[alt='logo'] {
  display: none !important;
}

/* Hide the MuiAvatar component */
div[class*='MuiAvatar-root'] {
  display: none !important;
}

/* Hide the MuiTouchRipple component */
span[class*='MuiTouchRipple-root'] {
  display: none !important;
}

/* Hide the button with the down arrow icon and all related elements */
button[class*='MuiIconButton-root'] {
  display: none !important;
}