chainlit icon indicating copy to clipboard operation
chainlit copied to clipboard

How do I remove the powered by chainlit in the footer? I cannot see it in readme.md

Open varunmehra5 opened this issue 1 year ago • 1 comments

How do I remove this powered by chainlit from the UI?

varunmehra5 avatar Apr 12 '24 01:04 varunmehra5

with custom css you can as a walkarround

/* Hide readme button */
.css-8kxmdr {
    visibility: hidden !important;
}

/* Hide Chat button */
.css-plyx71 {
    visibility: hidden !important;
}

/* Logo */
.css-12hxhao {
    visibility: hidden !important;
}

/* chainlit footer */
.css-1705j0v {
    visibility: hidden !important;
}

puppetm4st3r avatar Apr 13 '24 04:04 puppetm4st3r

You can use custom css with the .watermark class to hide "Built with Chainlit".

tpatel avatar Apr 29 '24 08:04 tpatel