Skip to content

Commit

Permalink
use the middle dot luke
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens committed Oct 19, 2022
1 parent ba7f6bd commit 7b83fe1
Showing 1 changed file with 12 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,18 +91,19 @@ export const FileCard: FunctionComponent<Props> = ({ file }) => {
</EuiText>
<EuiText color="subdued" size="xs">
{numeral(file.size).format('0[.]0 b')}
{file.extension && (
<>
&nbsp; &#183; &nbsp;
<span
css={css`
text-transform: uppercase;
`}
>
{file.extension}
</span>
</>
)}
</EuiText>
{file.extension ? (
<EuiText
css={css`
text-transform: uppercase;
`}
color="subdued"
size="xs"
>
{file.extension}
</EuiText>
) : null}
</>
}
hasBorder
Expand Down

0 comments on commit 7b83fe1

Please sign in to comment.