diff --git a/.changeset/warm-dancers-call.md b/.changeset/warm-dancers-call.md index aa69005663..404fa16a68 100644 --- a/.changeset/warm-dancers-call.md +++ b/.changeset/warm-dancers-call.md @@ -2,4 +2,10 @@ '@backstage/theme': minor --- -**BREAKING**: Removed noCssBaseline prop in UnifiedThemeProvider. If your Backstage instance looks broken after this update, there's a high chance that you forgot to add our new Backstage UI global CSS. To do that, please add @backstage/ui/css/styles.css at the root of your application. +**BREAKING**: Removed the built-in `CssBaseline` from `UnifiedThemeProvider`. If your Backstage instance looks broken after this update, you likely forgot to add our new Backstage UI global CSS. To do that, please import `@backstage/ui/css/styles.css` in `packages/app/src/index.tsx`: + +```tsx +import '@backstage/ui/css/styles.css'; +``` + +This change also removes the `noCssBaseline` prop, which became redundant.