mirror of
https://github.com/strapi/strapi.git
synced 2026-01-05 11:45:51 +00:00
CM: Swap key and value colors in the edit view information box
This commit is contained in:
parent
43c26242c6
commit
4f62675322
@ -11,8 +11,10 @@ import { getFullName } from '../../../../utils';
|
||||
const KeyValuePair = ({ label, value }) => {
|
||||
return (
|
||||
<Flex justifyContent="space-between" as="p">
|
||||
<Typography fontWeight="bold">{label}</Typography>
|
||||
<Typography textColor="neutral600">{value}</Typography>
|
||||
<Typography fontWeight="bold" textColor="neutral600">
|
||||
{label}
|
||||
</Typography>
|
||||
<Typography>{value}</Typography>
|
||||
</Flex>
|
||||
);
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user