We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ff649d commit 4d345e2Copy full SHA for 4d345e2
packages/app/src/app/components/Preview/Navigator/elements.js
@@ -16,15 +16,19 @@ export const Icons = styled.div`
16
display: flex;
17
`;
18
19
-export const Icon = styled.div`
+export const Icon = styled.button`
20
display: inline-block;
21
+ border: none;
22
+ background-color: transparent;
23
color: ${props =>
24
props.disabled ? props.theme.gray : props.theme.gray.darken(0.3)};
25
font-size: 1.5rem;
26
line-height: 0.5;
27
margin: 0 0.1rem;
28
vertical-align: middle;
29
text-align: center;
30
+ padding: 0;
31
+ outline: none;
32
33
${props =>
34
!props.disabled &&
0 commit comments