aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/newlightbox/NewLightboxView.scss
blob: c76a7d60d150bd436ef6572afafcc3c47646e3e7 (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
@import './NewLightboxStyles.scss';

.newLightboxView-frame {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #474545bb;
    backdrop-filter: blur(4px);
    z-index: 1000;

    .app-document {
        width: 100%;
        height: 100%;
        display: grid;
    }

    .explore {
        width: 100%;
        height: 100%;
        display: grid;
    }

    .newLightboxView-contents {
        position: relative;
        display: flex;
        flex-direction: column;

        .newLightboxView-doc {
            position: relative;
        }
    }
}