Very simple style that makes chat.openai.com responses multi-column. Number of columns adjusts with your screen size, to better make use of widescreen layouts.
ChatGPT Multi-column by aMoniker
Details
AuthoraMoniker
LicenseMIT
Categorychat.openai.com
Created
Updated
Size591 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 ChatGPT Multi-column
@version 20230416.23.12
@namespace userstyles.world/user/aMoniker
@description Very simple style that makes chat.openai.com responses multi-column. Number of columns adjust with your screen size, to better make use of widescreen layouts.
@author aMoniker
@license MIT
==/UserStyle== */
@-moz-document domain("chat.openai.com") {
.group.w-full > .text-base.gap-4 {
max-width: none;
padding: 3rem;
}
.markdown.prose.w-full.break-words {
column-count: auto;
column-width: 30rem;
column-gap: 3rem;
}
}