Untitled
Anonymous
plain_text
04/27/2023 6:25 PM
384 B
17
Indexable
const style = document.createElement('style');
style.textContent = `
[class^='AppShell_app-shell'] {
grid-template-columns: minmax(400px, 1fr) 10fr minmax(0px, 0fr) !important;
}
[class^='Chat_chat'] {
display: none;
}
`;
document.head.appendChild(style);Editor is loading...