fix show hide toggle button for small screens

This commit is contained in:
Felix Hamann 2019-05-08 21:23:25 +02:00
parent 6182e94143
commit db71a699eb

View File

@ -23,6 +23,12 @@ $show-hide-toggle-size: 6px;
border-top: 2px solid currentColor;
transition: transform .2s ease;
transform: translateY(-50%) rotate(-45deg);
@media (max-width: 768px) {
left: auto;
right: 20px;
color: var(--color-font);
}
}
.show-hide__toggle--right::before {