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

#cards {
    overflow-x: auto;
    flex-wrap: unset;

    .col {
        width: 18rem;
        max-width: 18rem;
        min-width: 18rem;
        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;
            }
        }
    }
}