diff --git a/app/components/App/App.scss b/app/components/App/App.scss index 74156432..db8d4ad8 100644 --- a/app/components/App/App.scss +++ b/app/components/App/App.scss @@ -11,6 +11,9 @@ } .titleBar { + height: 20px; + width: 100%; + position: absolute; -webkit-user-select: none; -webkit-app-region: drag; } diff --git a/app/components/Onboarding/FormContainer/FormContainer.js b/app/components/Onboarding/FormContainer/FormContainer.js index 8de0262d..9163cacd 100644 --- a/app/components/Onboarding/FormContainer/FormContainer.js +++ b/app/components/Onboarding/FormContainer/FormContainer.js @@ -14,6 +14,7 @@ import styles from './FormContainer.scss' const FormContainer = ({ title, description, back, next, children, theme }) => (
+
diff --git a/app/components/Onboarding/FormContainer/FormContainer.scss b/app/components/Onboarding/FormContainer/FormContainer.scss index 4a498356..63ebf3db 100644 --- a/app/components/Onboarding/FormContainer/FormContainer.scss +++ b/app/components/Onboarding/FormContainer/FormContainer.scss @@ -6,6 +6,14 @@ background: var(--darkestBackground); } +.titleBar { + height: 20px; + width: 100%; + position: absolute; + -webkit-user-select: none; + -webkit-app-region: drag; +} + .header { display: flex; flex-direction: row;