From 293692d5c5d49fd971b0aa5139d08e2e67febe62 Mon Sep 17 00:00:00 2001 From: Neil <55785687+carkom@users.noreply.github.com> Date: Sat, 5 Aug 2023 20:17:15 +0100 Subject: [PATCH] Fix titlebar transparent background (#1460) Not much to this. Turns title bar from transparent to coincide with new theme coloring. --- .../src/components/FinancesApp.tsx | 20 +++++++++---------- upcoming-release-notes/1460.md | 6 ++++++ 2 files changed, 16 insertions(+), 10 deletions(-) create mode 100644 upcoming-release-notes/1460.md diff --git a/packages/desktop-client/src/components/FinancesApp.tsx b/packages/desktop-client/src/components/FinancesApp.tsx index 534db6336..57deef990 100644 --- a/packages/desktop-client/src/components/FinancesApp.tsx +++ b/packages/desktop-client/src/components/FinancesApp.tsx @@ -261,16 +261,6 @@ function FinancesApp() { width: '100%', }} > - <Titlebar - style={{ - WebkitAppRegion: 'drag', - position: 'absolute', - top: 0, - left: 0, - right: 0, - zIndex: 1000, - }} - /> <div style={{ flex: 1, @@ -279,6 +269,16 @@ function FinancesApp() { position: 'relative', }} > + <Titlebar + style={{ + WebkitAppRegion: 'drag', + position: 'absolute', + top: 0, + left: 0, + right: 0, + zIndex: 1000, + }} + /> <Notifications /> <BankSyncStatus /> <StackedRoutes diff --git a/upcoming-release-notes/1460.md b/upcoming-release-notes/1460.md new file mode 100644 index 000000000..9e18fb92a --- /dev/null +++ b/upcoming-release-notes/1460.md @@ -0,0 +1,6 @@ +--- +category: Bugfix +authors: [carkom] +--- + +Fix transparent background on titlebar. \ No newline at end of file -- GitLab