aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/index.scss
blob: d90d415ac819475960d19bd64a9ba981942b22b1 (plain) (blame)
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
img {
    user-select: none;
}

.center {
    position: absolute;
    height: 50%;
    width: 50%;
    top: 50%;
    left: 50%;
    translate-top: -50%;
    translate-left: -50%;
    transform: translate(-50%, -50%);
}

#cards {
    .col {
        overflow-y: auto;

        .card .card-header img {
            cursor: pointer;
        }

        .card .list-group {
            max-height: 33.3vh;
            overflow: auto;

            .list-group-item {
                text-overflow: ellipsis;
                white-space: nowrap;
                overflow: hidden;
            }
        }
    }
}