Spaces:
Running
Running
File size: 644 Bytes
dafa792 |
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 |
/* Hide specific GitHub link */
a[href*='https://github.com/Chainlit/chainlit']
{
visibility: hidden !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;
}
|