Fixing the next issues:
- make textarea compatible with Grammarly;
- wider text input and output blocks (reduce scrolling).
AuthorInversion-des
LicenseNo License
Categorychat.openai.com
Created
Updated
Size749 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Fixing the next issues:
/* ==UserStyle==
@name Fixed some UI issues
@namespace github.com/openstyles/stylus
@version 1.1.0
@description Fixed some UI issues
@author Inversion
==/UserStyle== */
@-moz-document domain("chat.openai.com") {
/* make textarea compatible with Grammarly */
textarea[data-id] {
min-height: 48px !important;
}
/* (this broke more then fixed, seems not needed anymore) fix layout for numbered lists (broken by the "Superpower ChatGPT" extenstion) */
/*
div [id^=message] {
white-space:normal !important;
}
div [id^=message] li p {
margin-bottom: 10px;
}
*/
/* wider text input and output blocks (reduce scrolling) */
.xl\:max-w-3xl, .lg\:max-w-3xl {
max-width: 62rem;
}
}