We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d740233 commit abf061fCopy full SHA for abf061f
docs/source/_static/css/custom.css
@@ -138,9 +138,21 @@ html[data-theme="dark"] {
138
border-left: none;
139
}
140
141
-/* Fixed position for right sidebar */
+/* Right sidebar slide-in animation on page load */
142
+@keyframes slideInFromLeft {
143
+ from {
144
+ opacity: 0;
145
+ transform: translateX(-20px);
146
+ }
147
+ to {
148
+ opacity: 1;
149
+ transform: translateX(0);
150
151
+}
152
+
153
.bd-sidebar-secondary {
154
min-width: 200px;
155
+ animation: slideInFromLeft 0.3s ease forwards;
156
157
158
.pst-page-navigation-heading {
0 commit comments