Skip to content

Instantly share code, notes, and snippets.

@42pe
Created February 26, 2023 18:46
Show Gist options
  • Save 42pe/022a840f82fe18e0b1b95817f21d81c5 to your computer and use it in GitHub Desktop.
Save 42pe/022a840f82fe18e0b1b95817f21d81c5 to your computer and use it in GitHub Desktop.
Open AI ChatGPT Print Stylesheet for the Stylus FF Addon
@-moz-document domain("chat.openai.com") {
@media print {
div, main {
height: auto !important;
display: block;
overflow: auto;
position: initial !important;
}
button {
display:none;
}
main > div:last-child {
display: none;
}
body > div#__next div.overflow-hidden, body > div#__next main {
overflow: auto;
}
body > div#__next > div:first-of-type > div.flex {
padding-left: 0;
}
body > div#__next > div:not(.flex) > div:last-child {
display: none;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment