adjust size of 'Remove theme' button

Closes #1105'
main
Mike Fix 4 years ago
parent 84f518e669
commit 4152a49188
No known key found for this signature in database
GPG Key ID: 1D85E862314CA79F

@ -25,7 +25,7 @@ const ThemeItem = ({ children, item, isSelected, remove }) => (
remove(item.id)
}}
>
<RemoveIcon color={COLORS.SECONDARY} />
<RemoveIcon color={COLORS.SECONDARY} style={{ transform: 'scale(1.6)' }} />
</div>
)}
<style jsx>

@ -1,7 +1,14 @@
import React from 'react'
export default ({ color = 'black' }) => (
<svg width="5" height="5" viewBox="0 0 5 5" fill="none" xmlns="http://www.w3.org/2000/svg">
export default ({ color = 'black', style }) => (
<svg
width="5"
height="5"
viewBox="0 0 5 5"
fill="none"
xmlns="http://www.w3.org/2000/svg"
style={style}
>
<path
d="M2.5 3.08725L4.41704 5L5 4.41834L3.08857 2.5L5 0.581656L4.41704 0L2.5 1.91275L0.58296 0L0 0.581656L1.91144 2.5L0 4.41834L0.58296 5L2.5 3.08725Z"
fill={color}

Loading…
Cancel
Save