We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56359b4 commit 79ac09dCopy full SHA for 79ac09d
1 file changed
assets/css/jekyll-theme-chirpy.scss
@@ -19,3 +19,24 @@ html {
19
html::-webkit-scrollbar {
20
display: none; /* Chrome, Safari, Opera */
21
}
22
+
23
+/* Fix: overflow:hidden on #main-wrapper breaks sticky positioning.
24
+ Use overflow:clip instead — same visual clipping, but doesn't create a scroll container */
25
+#main-wrapper {
26
+ overflow: clip;
27
+}
28
29
+/* Keep topbar sticky at the top */
30
+#topbar-wrapper {
31
+ position: -webkit-sticky;
32
+ position: sticky;
33
+ top: 0;
34
+ z-index: 1030;
35
36
37
+/* Keep right panel (trending tags + recent updates) always sticky */
38
+#panel-wrapper > .access {
39
+ position: -webkit-sticky !important;
40
+ position: sticky !important;
41
+ top: 5rem;
42
0 commit comments