summaryrefslogtreecommitdiff
path: root/addons/web/static/src/scss/base_document_layout.scss
blob: 4203fe2bb73db83e0ae30b5f736eaca3ad0df6b4 (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
.o_document_layout .o_group {
    display: flex;
    .o_document_layout_company {
        flex: 5;
        @include media-breakpoint-up(sm, $o-extra-grid-breakpoints) {
            max-width: 50%;
        }
        img {
            max-height: 100px;
        }
        .o_document_layout_colors {
            margin-bottom: 32px;
            vertical-align: middle;
            display: flex;
            flex-direction: row;
            align-items: center;
            .o_field_widget {
                width: 30px;
                margin: 0 5px 0 0;
            }
            .btn {
                padding: 0;
                margin-left: 10px;
                .o_form_label {
                    height: 30px;
                    font-size: 18px;
                    margin: 0;
                    cursor: pointer;
                }
            }
        }
        select.o_input {
            height: 25px;
        }

    }
}

@media (max-width: 620px) {
    .o_document_layout .o_group {
        flex-direction: column;
    }
}