summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbh <qn+git@excalibur.computer>2026-01-15 17:59:45 +0800
committerbh <qn+git@excalibur.computer>2026-01-15 17:59:45 +0800
commit13def0619dc3117c142594fa889109736b013675 (patch)
tree041377b74e5537352f3487df6c7bcc7664280e38
parent613f803bfc9a549bb485babba5bc1234bd5bd3db (diff)
Fixed even more header problems
-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;
+ }
+ }
+}