From 43d05df78e313a2e30bfb7604b88cab3cd26ff65 Mon Sep 17 00:00:00 2001
From: schroda <50052685+schroda@users.noreply.github.com>
Date: Thu, 23 May 2024 00:41:48 +0200
Subject: [PATCH] Set Metadata title color to "secondary text"
The important information is the "value" instead of the "title", thus, the "value" should stand out more
---
src/components/atoms/Metadata.tsx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/components/atoms/Metadata.tsx b/src/components/atoms/Metadata.tsx
index 8192e2e0..7e0eeb2e 100644
--- a/src/components/atoms/Metadata.tsx
+++ b/src/components/atoms/Metadata.tsx
@@ -26,9 +26,9 @@ export const Metadata = ({
{...stackProps}
sx={{ flexDirection: 'row', columnGap: 1, flexWrap: 'wrap', alignItems: 'baseline', ...stackProps?.sx }}
>
- {title}
-
- {value}
+
+ {title}
+ {value}
);