Last active
May 14, 2024 05:48
-
-
Save semanticentity/b3a2bcacac4a04b1c649c8fbfdaec4e2 to your computer and use it in GitHub Desktop.
OpenAI Chat Playground Layout Fix CSS
This file contains hidden or 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
| /* Apply to: https://platform.openai.com/playground/chat */ | |
| .interactive { | |
| display: inline-block !important; | |
| border: .04rem solid #999 !important; | |
| width: 66%; | |
| min-height: 100px; | |
| float: right !important; | |
| margin-bottom: 10px; | |
| } | |
| .interactive.system { | |
| display: inline-block !important; | |
| border: .04rem solid #444 !important; | |
| width: 33%; | |
| float: left !important; | |
| position: sticky; | |
| top: 0; | |
| } | |
| .interactive:nth-of-type(even) { | |
| border: .04rem solid #666 !important; | |
| } | |
| /* Container class at time of writing */ | |
| .css-u2l010 { | |
| display: block; | |
| max-width: 90%; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment