Browse Source

fix: ugly blue background on Chrome mobile only

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

10
src/components/Container.tsx

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

Loading…
Cancel
Save