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 52be7ef commit 81cf415Copy full SHA for 81cf415
client/modules/IDE/pages/IDEViewMobile.jsx
@@ -69,7 +69,7 @@ const Icon = styled.a`
69
}
70
`;
71
72
-const StyledLink = styled(Link)`
+const IconLinkWrapper = styled(Link)`
73
width: 3rem;
74
margin-right: 1.25rem;
75
margin-left: none;
@@ -97,9 +97,9 @@ const IDEViewMobile = (props) => {
97
return (
98
<Screen>
99
<Header>
100
- <StyledLink to="/">
101
- <CloseIcon viewBox="20 21 60 60" aria-hidden="true" aria-label="close header" />
102
- </StyledLink>
+ <IconLinkWrapper to="/" aria-label="Return to original editor">
+ <CloseIcon viewBox="20 21 60 60" />
+ </IconLinkWrapper>
103
<div>
104
<h2>{project.name}</h2>
105
<h3>{selectedFile.name}</h3>
0 commit comments