summaryrefslogtreecommitdiff
path: root/CSS/chatgpt.com.css
diff options
context:
space:
mode:
Diffstat (limited to 'CSS/chatgpt.com.css')
-rw-r--r--CSS/chatgpt.com.css24
1 files changed, 21 insertions, 3 deletions
diff --git a/CSS/chatgpt.com.css b/CSS/chatgpt.com.css
index 7357676..ac401c2 100644
--- a/CSS/chatgpt.com.css
+++ b/CSS/chatgpt.com.css
@@ -15,8 +15,9 @@
background-position: center center !important;
background-repeat: no-repeat !important;
background-attachment: fixed !important;
- overflow-x: hidden !important;
- overflow-y: auto !important;
+
+ overflow-x: hidden !important;
+ overflow-y: auto !important;
}
/* React root */
@@ -28,9 +29,11 @@
/* Main scrolling container */
main {
background: transparent !important;
- overflow-y: auto !important;
+ overflow: visible !important;
min-height: 100vh !important;
}
+
+
}
@-moz-document url-prefix("https://chatgpt.com/"), url-prefix("https://chat.openai.com/") {
@@ -171,3 +174,18 @@ header,
backdrop-filter: none !important;
}
}
+
+@-moz-document url-prefix("https://chatgpt.com/"), url-prefix("https://chat.openai.com/") {
+
+ /* Offset chat content so it doesn't go under the sticky header */
+ main {
+ padding-top: 56px !important; /* desktop header height */
+ }
+
+ /* Mobile / responsive header is taller */
+ @media (max-width: 1023px) {
+ main {
+ padding-top: 64px !important;
+ }
+ }
+}