Commit ab3e070a authored by tom goriunov's avatar tom goriunov Committed by GitHub

change horizontal paddings for tags (#1824)

* change horizontal paddings for tags

* change space between icon and text

* duck is back!
parent a4156eb3
...@@ -23,7 +23,7 @@ const sizes = { ...@@ -23,7 +23,7 @@ const sizes = {
minH: 6, minH: 6,
minW: 6, minW: 6,
fontSize: 'sm', fontSize: 'sm',
px: 2, px: 1,
py: '2px', py: '2px',
lineHeight: 5, lineHeight: 5,
}, },
......
...@@ -38,7 +38,7 @@ const StatusTag = ({ type, text, errorText, isLoading }: Props) => { ...@@ -38,7 +38,7 @@ const StatusTag = ({ type, text, errorText, isLoading }: Props) => {
return ( return (
<Tooltip label={ errorText }> <Tooltip label={ errorText }>
<Tag colorScheme={ colorScheme } display="flex" isLoading={ isLoading } > <Tag colorScheme={ colorScheme } display="flex" isLoading={ isLoading } >
<IconSvg boxSize={ 2.5 } name={ icon } mr={ 2 } flexShrink={ 0 }/> <IconSvg boxSize={ 2.5 } name={ icon } mr={ 1 } flexShrink={ 0 }/>
<TagLabel display="block">{ text }</TagLabel> <TagLabel display="block">{ text }</TagLabel>
</Tag> </Tag>
</Tooltip> </Tooltip>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment