aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/main/frontend/resources/scss/features/_general.scss
blob: f11c2c0abfa50d786e24558abe1ce429357190e4 (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
.general-page {
    @include body-1;
    padding: 35px 90px 0 50px;
    background-color: #fff;

    .general-page-title {
        height: 110px;
        line-height: 110px;
        @include heading-1-emphasis;
        color: $dark-gray;
    }

    .general-page-content {
        display: grid;
        grid-template-columns: 60% 40%;
        grid-gap: 40px;
        color: #444;

        .description-part textarea {
            height: 200px;
            padding-top: 5px;
        }

        .version-info-part {
            background-color: $light-silver;
            height: 200px;
            margin-top: 22px;
            padding: 20px;
            box-sizing: border-box;
            .label {
                @include body-3;
                margin-bottom: 5px;
            }
            .value {
                margin-bottom: 10px;
            }
        }
    }
}