Skip to content

Commit

Permalink
Imported from brave-ui: icon resizing
Browse files Browse the repository at this point in the history
- generally brought icons down in size slightly across the board to accomodate for them filling more of the canvas size
  • Loading branch information
rossmoody authored and cezaraugusto committed Nov 6, 2018
1 parent 0283a7a commit e492fee
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/features/shields/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import styled from '../../../theme'

import { ComponentType } from 'react'
import {
AlertShieldIcon,
ShieldAlertIcon,
OpenNewIcon,
CaratDownIcon,
CaratUpIcon,
Expand All @@ -22,38 +22,38 @@ export const LinkIcon = styled(OpenNewIcon as ComponentType)`
color: ${palette.blue200};
`

export const ShieldIcon = styled(AlertShieldIcon as ComponentType)`
export const ShieldIcon = styled(ShieldAlertIcon as ComponentType)`
width: 48px;
height: 48px;
color: ${palette.grey600};
`

export const ShowMoreIcon = styled(CaratDownIcon as ComponentType)`
width: 24px;
height: 24px;
width: 16px;
height: 16px;
color: ${palette.blue200};
`

export const ShowLessIcon = styled(CaratUpIcon as ComponentType)`
width: 24px;
height: 24px;
width: 16px;
height: 16px;
color: ${palette.blue200};
`

export const CloseIcon = styled(CloseStrokeIcon as ComponentType)`
width: 24px;
height: 24px;
width: 16px;
height: 16px;
color: ${palette.blue200};
`

export const BlockedScriptsIcon = styled(CloseCircleIcon as ComponentType)`
width: 24px;
height: 24px;
width: 16px;
height: 16px;
color: ${palette.red500};
`

export const AllowedScriptsIcon = styled(CheckCircleIcon as ComponentType)`
width: 24px;
height: 24px;
width: 16px;
height: 16px;
color: ${palette.green500};
`

0 comments on commit e492fee

Please sign in to comment.