aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionMapView.scss
blob: 870b7fda8ce4c9af9f52efdc4cd1c188d4e8de1d (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
.collectionMapView {
    width: 100%;
    height: 100%;

    .collectionMapView-contents {
        width: 100%;
        height: 100%;
        > div {
            position: unset !important; // when the sidebar filter flys out, this prevents the map from extending outside the document box
        }
    }
}

.loadingWrapper {
    width: 100%;
    height: 100%;
    background-color: pink;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    .loadingGif {
        align-self: center;
        justify-self: center;
        width: 50px;
        height: 50px;
    }
}