Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marius-wieschollek/passwords-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/vue/Components/Firstrun/FirstRunWizard.vue')
-rw-r--r--src/vue/Components/Firstrun/FirstRunWizard.vue58
1 files changed, 30 insertions, 28 deletions
diff --git a/src/vue/Components/Firstrun/FirstRunWizard.vue b/src/vue/Components/Firstrun/FirstRunWizard.vue
index 14e695f..c00bfd5 100644
--- a/src/vue/Components/Firstrun/FirstRunWizard.vue
+++ b/src/vue/Components/Firstrun/FirstRunWizard.vue
@@ -15,35 +15,37 @@
</script>
<style lang="scss">
- .first-run-wizard {
- position : fixed;
- top : 0;
- left : 0;
- bottom : 0;
- right : 0;
+.first-run-wizard {
+ position : fixed;
+ top : 0;
+ left : 0;
+ bottom : 0;
+ right : 0;
- &:before {
- content : ' ';
- background-color : var(--element-bg-color);
- position : fixed;
- top : 0;
- left : 0;
- bottom : 0;
- right : 0;
- opacity : .75;
- z-index : -1
- }
+ &:before {
+ content : " ";
+ background-color : var(--element-bg-color);
+ position : fixed;
+ top : 0;
+ left : 0;
+ bottom : 0;
+ right : 0;
+ opacity : .75;
+ z-index : -1
+ }
- .first-run-wizard-content {
- margin : 1rem;
- width : calc(100% - 2rem);
- height : calc(100% - 2rem);
- background-color : var(--element-active-hover-fg-color);
- color : var(--element-active-hover-bg-color);
- border-radius : var(--element-border-radius);
- padding : .5rem;
- box-sizing : border-box;
- position : relative;
- }
+ .first-run-wizard-content {
+ margin : 1rem;
+ width : calc(100% - 2rem);
+ height : calc(100% - 2rem);
+ background-color : var(--element-active-hover-fg-color);
+ color : var(--element-active-hover-bg-color);
+ background-image : url("/img/background.png"), linear-gradient(40deg, #0082c9 0%, #30b6ff 100%);
+ background-size : 300px, cover;
+ border-radius : var(--element-border-radius);
+ padding : .5rem;
+ box-sizing : border-box;
+ position : relative;
}
+}
</style> \ No newline at end of file