style: update HeroUIProvider dimensions and reset body background color (#10013)

- Adjusted HeroUIProvider to use full height and width for better layout.
- Reset body background color to unset for improved styling consistency.
This commit is contained in:
MyPrototypeWhat 2025-09-07 18:33:57 +08:00 committed by GitHub
parent 33f8ea5acb
commit eb00ceb1c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,7 @@ function App(): React.ReactElement {
return (
<Provider store={store}>
<QueryClientProvider client={queryClient}>
<HeroUIProvider className="flex flex-1">
<HeroUIProvider className="flex h-full w-full flex-1">
<StyleSheetManager>
<ThemeProvider>
<AntdProvider>

View File

@ -51,6 +51,7 @@ body {
font-family: var(--font-family);
text-rendering: optimizeLegibility;
transition: background-color 0.3s linear;
background-color: unset;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;