From eb00ceb1c7012bdb2a9585cbfc55eca253e9b606 Mon Sep 17 00:00:00 2001 From: MyPrototypeWhat Date: Sun, 7 Sep 2025 18:33:57 +0800 Subject: [PATCH] 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. --- src/renderer/src/App.tsx | 2 +- src/renderer/src/assets/styles/index.css | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/renderer/src/App.tsx b/src/renderer/src/App.tsx index 096e908c9e..019c6324d9 100644 --- a/src/renderer/src/App.tsx +++ b/src/renderer/src/App.tsx @@ -34,7 +34,7 @@ function App(): React.ReactElement { return ( - + diff --git a/src/renderer/src/assets/styles/index.css b/src/renderer/src/assets/styles/index.css index d687804fa4..40899314d0 100644 --- a/src/renderer/src/assets/styles/index.css +++ b/src/renderer/src/assets/styles/index.css @@ -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;