succTable.scss 434 Bytes
Newer Older
1
#succTable {
2
3
4
    min-height: 400px;
    max-height: 1000px;
    overflow-y: auto;
5
    position: relative;
6
7

    .succTable-tooltip {
8
        width: 90%;
9
        position: absolute;
10
11
12
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
13

14
15
16
        a {
            font-weight: 500;
            color: blue;
17
18
        }
    }
19
20
21
22
23

    .succeed-padding {
        padding-left: 6px;
        box-sizing: border-box;
    }
24
}