aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/resources/scss/common/_layout.scss
blob: ec7d2a18f3f3c0ca90cf0540005c5ab5b2e747c0 (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
53
54
55
56
.sdc-app {
    height: 100%;
}
.flex {
    display: flex;
    flex: 1;
}

.flex-column {
    @extend .flex;
    flex-direction: column;
}

.content-area {
    padding: 30px 60px 70px 60px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    &.no-padding-content-area {
        padding: 0;
    }
}

.page-title {
    @extend .heading-1;
    @extend .text-uppercase !optional;
    margin-bottom: 20px;
    color: $blue;
}
.sdc-modal {
    .sdc-modal__wrapper.sdc-modal-type-error {
        align-self: baseline;
    }
    .sdc-modal__wrapper.sdc-modal-type-custom {
        .sdc-modal__content {
            padding: 0;
            .entitlement-pools-modal,
            .license-key-groups-modal,
            .manage-permissions-page {
                .validation-form-content {
                    overflow-y: visible;
                }
            }
            .validation-form-content {
                padding: 20px 40px;
                overflow-y: auto;
                .no-bottom-margin {
                    margin-bottom: 0;
                    .customized-date-picker {
                        margin-bottom: 0;
                    }
                }
            }
        }
    }
}