Skip to content

Commit

Permalink
Merge pull request #1043 from tudi2d/1042-back-arrow-direction
Browse files Browse the repository at this point in the history
Fix rotation of arrow icon for HowTo descriptions
  • Loading branch information
BenGamma authored Sep 30, 2020
2 parents ba4f202 + 87bc3e2 commit bb260ee
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ export default class HowtoDescription extends React.PureComponent<IProps, any> {
<Button variant="subtle" fontSize="14px" data-cy="go-back">
<Flex>
<Image
sx={{ width: '10px', marginRight: '4px', rotate: '90deg' }}
sx={{
width: '10px',
marginRight: '4px',
transform: 'rotate(90deg)',
}}
src={ArrowIcon}
/>
<Text>Back</Text>
Expand Down

0 comments on commit bb260ee

Please sign in to comment.