Merge pull request #5991 from Armanio/fix/a11y_rules_style

Addon-a11y: fix design icons
This commit is contained in:
Gaëtan Maisse 2019-03-10 10:28:39 +01:00 committed by GitHub
commit 5c3dbbb8ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -13,6 +13,7 @@ const Wrapper = styled.div();
const Icon = styled<any, any>(Icons)(({ theme }) => ({
height: 10,
width: 10,
minWidth: 10,
color: theme.color.mediumdark,
marginRight: '10px',
transition: 'transform 0.1s ease-in-out',
@ -28,6 +29,7 @@ const HeaderBar = styled.button(({ theme }) => ({
border: 0,
background: 'none',
color: 'inherit',
textAlign: 'left',
borderLeft: '3px solid transparent',

View File

@ -30,16 +30,14 @@ const Message = styled.div({
});
const Status = styled.div(({ passes, impact }: { passes: boolean; impact: string }) => ({
height: '16px',
width: '16px',
borderRadius: '8px',
fontSize: '10px',
display: 'inline-flex',
justifyContent: 'center',
alignItems: 'center',
textAlign: 'center',
flex: '0 0 16px',
color: passes ? impactColors.success : (impactColors as any)[impact],
'& > svg': {
height: '16px',
width: '16px',
},
}));
interface RuleProps {