aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionMulticolumnView.scss
blob: acb194983c722763536f6872fa949dd56f7882d4 (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
.collectionMulticolumnView_contents {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;

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

        .display {
            text-align: center;
            height: 20px;
        }

    }

    .resizer {
        background: black;
        cursor: ew-resize;
        transition: 0.5s opacity ease;
    }

}