Extra pixels in the code container and less space between sidebar and chat text. Works best with widescreen monitors and multiple windows.
Wide Code Container (ChatGPT) by Jnorm911

Details
AuthorJnorm911
LicenseNo License
Categorychat.openai.com
Created
Updated
Code size649 B
Code checksumfefc4b12
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Firefox & Chromium based browser compatible
Code window is now dynamic as low as 768px
Source code
/* ==UserStyle==
@name Wide Code Container ChatGPT
@version 2.4
@namespace userstyles.world/user/Jnorm911
@description Flexable wide code container as low as 1025px width
@author Jnorm911
@license No
==/UserStyle== */
@-moz-document url-prefix("https://chatgpt.com/") {
@media (min-width: 1020px) {
.xl\:px-5 {
padding-left: 3.25rem;
padding-right: .25rem;
}
}
@media (min-width: 1020px) {
.xl\:max-w-\[48rem\] {
max-width: 100%;
}
}
@media (min-width: 768px) {
.md\:max-w-3xl {
max-width: 100%;
}
}
}