Untitled
unknown
plain_text
3 years ago
355 B
8
Indexable
const style = document.createElement('style');
style.textContent = `
div[class^='AppShell_app-shell'], div[class*=' AppShell_app-shell'] {
grid-template-columns: minmax(400px, 1fr) 10fr minmax(0px, 0fr) !important;
}
div[class^='Chat_chat'], div[class*=' Chat_chat'] {
display: none;
}
`;
document.head.appendChild(style);Editor is loading...