Skip to content

Commit

Permalink
Merge pull request #1708 from fdm-monster/fix/first-time-setup-bg-not…
Browse files Browse the repository at this point in the history
…-background

fix: background was appearing above first-time-setup, not fixed and below
  • Loading branch information
davidzwa authored Nov 18, 2024
2 parents 554ef83 + f4a65d2 commit 5b91327
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions RELEASE_NOTES.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release notes

Fixes

- First-time setup: background was appearing above first-time-setup, not fixed and below

## Client 14/11/2024 1.7.0

Features
Expand Down
10 changes: 10 additions & 0 deletions src/components/FirstTimeSetup/FirstTimeSetupView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
src="/img/logo.svg"
style="opacity: 0.08"
/>

<v-stepper v-model="stepper" class="grey darken-4">
<v-stepper-header>
<v-stepper-step :complete="stepper > 1" step="1"> Introduction</v-stepper-step>
Expand Down Expand Up @@ -275,4 +276,13 @@ async function continueNext() {
border-color: orange;
}
}
.grid-bg-img {
position: fixed !important;
height: 100vh;
top: 50vh;
width: 600%;
left: -250%;
filter: grayscale(100%);
}
</style>

0 comments on commit 5b91327

Please sign in to comment.