fix: controls not visible on safari because of it doesn't have hover

This commit is contained in:
Vyrtsev Mikhail
2019-06-30 14:19:54 -05:00
committed by Umputun
parent b98d7ef1ef
commit e63ccdd18d
@@ -4,10 +4,13 @@
user-select: none;
font-size: 14px;
font-weight: 700;
opacity: 0;
&:hover,
&:focus-within {
opacity: 1;
@media (hover: hover) {
opacity: 0;
&:hover,
&:focus-within {
opacity: 1;
}
}
}