aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionMulticolumn/CollectionMultirowView.scss
blob: ef4b4a19cc02c67b291792a0ab99414af59897c6 (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
.collectionMultirowView_contents {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    flex-direction: column;

    .document-wrapper {
        display: flex;
        flex-direction: row;

        .label-wrapper {
            display: flex;
            flex-direction: row;
            justify-content: center;
            height: 20px;
        }

    }

    .resizer {
        cursor: ew-resize;
        transition: 0.5s opacity ease;
        display: flex;
        flex-direction: row;

        .internal {
            width: 100%;
            height: 100%;
            transition: 0.5s background-color ease;
        }
    }

}