From 6cf3ab325b80d5677182d29b057d61f1a4bbbdab Mon Sep 17 00:00:00 2001 From: Timur Carpeev Date: Fri, 28 Jul 2023 09:27:56 +0200 Subject: [PATCH] Make titles font stronger (#4001) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Make titles stronger * Add changeset * Nudge style property --------- Co-authored-by: Michał Droń --- .changeset/hip-geckos-study.md | 5 +++++ src/components/Datagrid/styles.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/hip-geckos-study.md diff --git a/.changeset/hip-geckos-study.md b/.changeset/hip-geckos-study.md new file mode 100644 index 00000000000..1ec4ed70feb --- /dev/null +++ b/.changeset/hip-geckos-study.md @@ -0,0 +1,5 @@ +--- +"saleor-dashboard": patch +--- + +Make titles font stronger diff --git a/src/components/Datagrid/styles.ts b/src/components/Datagrid/styles.ts index 6d5901f8915..684d33c9aa3 100644 --- a/src/components/Datagrid/styles.ts +++ b/src/components/Datagrid/styles.ts @@ -211,7 +211,7 @@ export function useDatagridTheme( borderColor: themeValues.colors.border.neutralHighlight, fontFamily: "'Inter var', sans-serif", baseFontStyle: themeValues.fontSize.bodySmall, - headerFontStyle: themeValues.fontSize.bodySmall, + headerFontStyle: `${themeValues.fontWeight.bodyStrongSmall} ${themeValues.fontSize.bodyStrongSmall}`, editorFontSize: themeValues.fontSize.bodySmall, textMedium: themeValues.colors.foreground.iconNeutralPlain, textGroupHeader: themeValues.colors.foreground.iconNeutralDefault,