Untitled

 avatar
unknown
plain_text
2 years ago
355 B
4
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...