aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/TabDocView.scss
blob: c0a46543df1c3177ec39fd12caf5743ca3dab5f7 (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
input.lm_title:focus {
    max-width: max-content !important;
}
.miniMap-hidden,
.miniMap {
    position: absolute;
    overflow: hidden;
    right: 10;
    bottom: 10;
    border: solid 1px;
    box-shadow: black 0.4vw 0.4vw 0.8vw;
    width: 100%;
    height: 100%;
    transition: all 0.5s;

    .miniOverlay {
        width: 100%;
        height: 100%;
        position: absolute;

        .miniThumb {
            background: #25252525;
            position: absolute;
        }
    }
}
.miniMap-hidden {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background: white;
    transform: translate(20px, 20px) rotate(45deg);
    border-radius: 30px;
    padding: 2px;
    > svg {
        margin-top: 3px;
        transform: translate(0px, 7px);
    }
}