We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7ded1c commit e49a8fcCopy full SHA for e49a8fc
site/assets/style.css
@@ -61,7 +61,7 @@ body {
61
margin-left: 0;
62
}
63
64
-/* Toggle Button */
+/* Toggle Button *//*
65
.toggle-btn {
66
position: fixed;
67
top: 1rem;
@@ -72,6 +72,24 @@ body {
72
padding: 0.5rem 1rem;
73
border-radius: 5px;
74
cursor: pointer;
75
+}*/
76
+
77
+.toggle-btn {
78
+ position: fixed;
79
+ top: 1rem;
80
+ left: 1rem;
81
+ z-index: 1001; /* Ensure it's above other elements */
82
+ background-color: var(--button-bg);
83
+ color: var(--button-text);
84
+ border: none;
85
+ padding: 0.5rem 1rem;
86
+ border-radius: 5px;
87
+ cursor: pointer;
88
+ transition: background-color 0.3s ease;
89
+}
90
91
+.toggle-btn:hover {
92
+ background-color: var(--hover-bg);
93
94
95
/* Dark Mode Toggle Button */
0 commit comments