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

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

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

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

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