We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4aa0673 commit 9819171Copy full SHA for 9819171
src/pydata_sphinx_theme/assets/styles/sections/_skip-link.scss
@@ -12,12 +12,13 @@
12
background-color: var(--pst-color-background);
13
color: var(--pst-color-link);
14
padding: 0.5rem;
15
- translate: 0 -100%;
16
- transition: translate 150ms ease-in-out;
17
z-index: $zindex-modal;
18
border-bottom: 1px solid var(--pst-color-border);
19
+ // This shows / hides the button
+ transform: translateY(-100%);
20
+ transition: transform 150ms ease-in-out;
21
&:focus {
- translate: 0;
22
+ transform: translateY(0%);
23
}
24
0 commit comments