ImagesTable: Increase font size of text in Status column
Fixes #808. This removes the `<small>` tag around status message to unify the font size within the table.
This commit is contained in:
parent
a3afc562c8
commit
45d0db3f04
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ const ImageBuildStatus = (props) => {
|
|||
messages[props.status].map((message, key) => (
|
||||
<Flex key={key} className="pf-u-align-items-baseline pf-m-nowrap">
|
||||
<div className="pf-u-mr-sm">{message.icon}</div>
|
||||
<small>{message.text}</small>
|
||||
{message.text}
|
||||
</Flex>
|
||||
))}
|
||||
</React.Fragment>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue