This commit is contained in:
2024-03-15 16:26:27 +05:30
incheckning 381106cbe5
1046 ändrade filer med 285998 tillägg och 0 borttagningar
@@ -0,0 +1,58 @@
/********************************
offcanvas toggler btn
********************************/
.mobile-menu-toggle {
svg {
width: 50px;
position: relative;
@include min-screen(576) {
top: -8px;
}
path {
transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25),
stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
fill: none;
stroke-dashoffset: 0;
stroke-linecap: round;
stroke-width: 30px;
&#top,
&#bottom {
stroke-dasharray: 240px 950px;
}
&#middle {
stroke-dasharray: 240px 240px;
}
}
}
& .close {
svg {
path {
&#top,
&#bottom {
stroke-dasharray: -650px;
stroke-dashoffset: -650px;
}
&#middle {
stroke-dasharray: 1px 220px;
stroke-dashoffset: -115px;
}
}
}
}
// theme1
&.theme1 {
svg {
path {
stroke: $color-dark;
}
}
}
}
/********************************
offcanvas toggler btn END
********************************/