-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchatgpt-customization.user.css
More file actions
44 lines (38 loc) · 1.02 KB
/
chatgpt-customization.user.css
File metadata and controls
44 lines (38 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* ==UserStyle==
@name ChatGPT - Customization
@description Provides some extra customization options for ChatGPT.
@version 2025.02.17.18.43
@author MetalTxus
@namespace https://github.com/jesuscc1993/
@license CC BY-SA 4.0
@preprocessor less
@var text max-width "Max content width" 48rem
@var checkbox center-content "Center content" 0
@var checkbox hide-adds "Hide bottom add" 0
==/UserStyle== */
@-moz-document domain("chatgpt.com") {
@media (min-width: 1280px) {
.xl\:max-w-\[48rem\] {
max-width: @max-width;
}
}
@media (min-width: 768px) {
.md\:max-w-3xl {
max-width: @max-width;
}
}
html when (@center-content = 1) {
.bg-token-sidebar-surface-primary[class*="flex-shrink"] {
visibility: visible !important;
&,
> * {
width: 260px !important;
}
}
}
html when (@hide-adds = 1) {
.absolute.bottom-full:has([data-testid="close-button"]) {
display: none;
}
}
}