Browse Source
fix: ugly blue background on Chrome mobile only
master
Failed to extract signature
1 changed files with
8 additions and
2 deletions
-
src/components/Container.tsx
|
@ -292,9 +292,15 @@ const Container: React.FC<{ |
|
|
|
|
|
|
|
|
${end ? "rotate: 180deg;" : ""} |
|
|
${end ? "rotate: 180deg;" : ""} |
|
|
|
|
|
|
|
|
&:hover * { |
|
|
&:hover, &:focus { |
|
|
|
|
|
/* disable some browser defaults */ |
|
|
|
|
|
-webkit-tap-highlight-color: transparent; |
|
|
|
|
|
outline: none; |
|
|
|
|
|
touch-action: manipulation; |
|
|
|
|
|
* { |
|
|
fill: var(--primary-colour); |
|
|
fill: var(--primary-colour); |
|
|
} |
|
|
} |
|
|
|
|
|
} |
|
|
`}>
|
|
|
`}>
|
|
|
<Right |
|
|
<Right |
|
|
className={css` |
|
|
className={css` |
|
|