Maximize your ChatGPT viewing experience on the web. This tweak removes the maximum width constraint on the ChatGPT interface.
Full Width ChatGPT Display by alexkevlar
Details
Authoralexkevlar
LicenseNo License
Categorychat.openai.com
Created
Updated
Size834 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Full Width ChatGPT Display
@version 20240906.10.42
@namespace https://userstyles.world/user/alexkevlar
@description Maximize your ChatGPT viewing experience on the web. This tweak removes the maximum width constraint on the ChatGPT interface.
@author alexkevlar
@license No License
==/UserStyle== */
@-moz-document url-prefix("https://chat.openai.com/"), url-prefix("https://chatgpt.com") {
.group {
max-width: none
}
.w-full > div > div {
max-width: none;
padding-left: .5rem;
padding-right: .5rem
}
@media (min-width: 1024px) {
.w-full > div > div {
max-width: none;
}
}
@media (min-width: 1280px) {
.w-full > div > div {
max-width: none;
}
}
}