interface: icon sigils have borderradius

This commit is contained in:
Matilde Park 2020-10-19 21:07:24 -04:00
parent d52753513f
commit b7c7cb9a1c

View File

@ -21,12 +21,14 @@ export const Sigil = memo(({ classes = '', color, foreground = '', ship, size, s
return ship.length > 14
? (<Box
backgroundColor='black'
borderRadius={icon ? '1' : '0'}
display='inline-block'
height={size}
width={size}
/>) : (
<Box
display='inline-block'
borderRadius={icon ? '1' : '0'}
flexBasis={size}
backgroundColor={color}
padding={padding}