toc switch responsive bug fix
This commit is contained in:
parent
9ce80b53f9
commit
5c7be1ca7a
|
@ -5,6 +5,11 @@
|
||||||
height: 14px;
|
height: 14px;
|
||||||
margin-top: 0.7rem;
|
margin-top: 0.7rem;
|
||||||
margin-left: 1rem;
|
margin-left: 1rem;
|
||||||
|
|
||||||
|
@include animation('slide-in-down-little .2s .3s 1 ease-in backwards');
|
||||||
|
@media only screen and (max-width: 1300px) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.switch input {
|
.switch input {
|
||||||
|
|
|
@ -37,9 +37,15 @@
|
||||||
&__title {
|
&__title {
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
margin-top: 0.5rem;
|
margin-top: 0.5rem;
|
||||||
|
@include animation('slide-in-down-little .2s .3s 1 ease-in backwards');
|
||||||
|
|
||||||
@include themify($themes) {
|
@include themify($themes) {
|
||||||
color: themed('toc-label-color');
|
color: themed('toc-label-color');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 1300px) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
|
Loading…
Reference in New Issue