Spaces:
Sleeping
Sleeping
| /* 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 ; /* Ensure it is completely hidden */ | |
| } | |
| /* Remove any watermarks */ | |
| .watermark { | |
| display: none ; /* Ensure it is not displayed */ | |
| } | |
| /* Hide specific GitHub attribution links */ | |
| a[href*='https://github.com/Chainlit/chainlit'] { | |
| display: none ; /* Completely remove the link from view */ | |
| } | |
| /* Disable interactions for all links (use sparingly) */ | |
| a { | |
| pointer-events: none; | |
| cursor: default; | |
| } |