Print style settings
claude.ai Print style settings by Katsu2013
Details
AuthorKatsu2013
LicenseNo License
Categoryclaude.ai
Created
Updated
Size621 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 claude.ai Print style settings
@version 20240719.05.40
@namespace https://userstyles.world/user/KatsuYamazawa
@description Print style settings
@author KatsuYamazawa
@license MIT
==/UserStyle== */
@-moz-document url-prefix("https://claude.ai/chat/") {
@media print {
/* Hide input field */
.sticky.bottom-0 {
display: none;
}
/* Remove fit to screen height setting */
.h-screen {
height: unset
}
/* Remove internal scrolling */
.overflow-y-scroll {
overflow-y: inherit;
}
.min-h-full,
.min-h-screen {
min-height: unset;
}
}
}