Last active
June 22, 2024 10:56
-
-
Save fukata/19368071ea12e3ed5cea05a0b014de68 to your computer and use it in GitHub Desktop.
ChatGPTの会話部分をウィンドウ幅に広げるCSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document url-prefix("https://chat.openai.com/") { | |
.text-base { | |
max-width: 100% !important; | |
} | |
.h-full { | |
height: auto !important; | |
} | |
div[class^=react-scroll-to-bottom--css-vsfma-] { | |
height: auto !important; | |
overflow-y: auto !important; | |
} | |
form.stretch { | |
max-width: 100% !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment