Merge pull request #31432 from backstage/bui-fix-default-styles

Fix default font weight and family
This commit is contained in:
Patrik Oldsberg
2025-10-15 14:43:52 +02:00
committed by GitHub
3 changed files with 9 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/ui': patch
---
Fix default font wight and font family in Backstage UI.
+2
View File
@@ -239,6 +239,8 @@
body {
background-color: var(--bui-bg);
color: var(--bui-fg-primary);
font-family: var(--bui-font-regular);
font-weight: var(--bui-font-weight-regular);
}
}
+2
View File
@@ -29,5 +29,7 @@
body {
background-color: var(--bui-bg);
color: var(--bui-fg-primary);
font-family: var(--bui-font-regular);
font-weight: var(--bui-font-weight-regular);
}
}