aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/smartdraw/SmartDrawHandler.scss
blob: c25273876000e0f9f9d2658f7c34db667295fd85 (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
50
51
52
.smart-draw-handler {
    position: absolute;
    // width: 265px;

    .smart-draw-main {
        display: flex;
        flex-direction: row;

        .smartdraw-input {
            color: black;
            margin: auto;
        }
    }

    .smartdraw-options {
        margin-top: 5px;
        display: flex;
        flex-direction: row;
        justify-content: space-around;

        .auto-color {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 30%;
        }

        .complexity {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 31%;
        }

        .size {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 39%;

            .size-slider {
                width: 80%;
            }
        }
    }

    .regenerate-box,
    .edit-box {
        display: flex;
        flex-direction: row;
    }
}