Fix titlebar transparent background (#1460)

Not much to this. Turns title bar from transparent to coincide with new
theme coloring.
This commit is contained in:
Neil
2023-08-05 20:17:15 +01:00
committed by GitHub
parent 7b7e6e4db0
commit 293692d5c5
2 changed files with 16 additions and 10 deletions

View File

@@ -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

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [carkom]
---
Fix transparent background on titlebar.