Browse Source

fix: ugly blue background on Chrome mobile only

master
Muthu Kumar 3 weeks ago
parent
commit
4eddf9d5a9
Failed to extract signature
  1. 8
      src/components/Container.tsx

8
src/components/Container.tsx

@ -292,9 +292,15 @@ const Container: React.FC<{
${end ? "rotate: 180deg;" : ""}
&:hover * {
&:hover, &:focus {
/* disable some browser defaults */
-webkit-tap-highlight-color: transparent;
outline: none;
touch-action: manipulation;
* {
fill: var(--primary-colour);
}
}
`}>
<Right
className={css`

Loading…
Cancel
Save