add hover & active state to config area headers

This commit is contained in:
Send_Nukez 2021-11-25 09:59:36 +01:00
parent 4328a81a1c
commit 89742ae74a

View file

@ -60,8 +60,18 @@
min-height: 38px; //for some reason height alone isn't enough min-height: 38px; //for some reason height alone isn't enough
height: 38px; height: 38px;
.dribbblish-config-area-header svg { .dribbblish-config-area-header {
transform: rotate(270deg); svg {
transform: rotate(270deg);
}
&:hover svg {
transform: rotate(270deg) scale(1.1);
}
&:active svg {
transform: rotate(270deg) scale(0.9);
}
} }
} }
@ -86,6 +96,14 @@
stroke-width: 2px; stroke-width: 2px;
transform: rotate(90deg); transform: rotate(90deg);
} }
&:hover svg {
transform: rotate(90deg) scale(1.1);
}
&:active svg {
transform: rotate(90deg) scale(0.9);
}
} }
.dribbblish-config-area-items { .dribbblish-config-area-items {