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

FirstRunWizard.vue « Firstrun « Components « vue « src - github.com/marius-wieschollek/passwords-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 14e695fcd42e22a24eaf8ed2916f4a7d1e5e4e77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<template>
    <div class="first-run-wizard">
        <div class="first-run-wizard-content">
            <server-setup/>
        </div>
    </div>
</template>

<script>
    import ServerSetup from '@vue/Components/Firstrun/Steps/ServerSetup';

    export default {
        components: {ServerSetup}
    };
</script>

<style lang="scss">
    .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
        }

        .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;
        }
    }
</style>