When printing results in ChatGPT, adjust the style so that the entire text is visible.
ChatGPT Print Style Setting by Katsu2013
Details
AuthorKatsu2013
LicenseNo License
Categorychatgpt.com
Created
Updated
Size839 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.com
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("chatgpt.com") {
/* 印刷時設定 */
@media print {
/* */
.overflow-hidden {
overflow: unset;
}
/* */
[class*="react-scroll-to-bottom"] {
height: unset;
overflow-y: unset;
}
/* */
.h-full {
height: unset;
}
/* サイドバー非表示 */
.group\/sidebar {
display: none;
}
/* 自分自身の質問内容 */
.max-w-\[var\(--user-chat-width\,70\%\)\] {
max-width: 90%;
font-size: small;
}
/* 入力欄 */
.md\:pt-0.w-full {
display: none;
}
}
}