Improve accessibility of actions bar

This commit is contained in:
jeffvli
2023-06-09 02:49:18 -07:00
committed by Jeff
parent 946b73d215
commit 7ab532be07
+5 -1
View File
@@ -34,6 +34,10 @@ const ActionsContainer = styled.div`
&:hover { &:hover {
opacity: 1 !important; opacity: 1 !important;
} }
&:focus-within {
opacity: 1 !important;
}
`; `;
const LyricsContainer = styled.div` const LyricsContainer = styled.div`
@@ -43,7 +47,7 @@ const LyricsContainer = styled.div`
&:hover { &:hover {
${ActionsContainer} { ${ActionsContainer} {
opacity: 0.5; opacity: 0.6;
} }
} }
`; `;