summaryrefslogtreecommitdiffstats
path: root/webapp/sass/components/_tooltip.scss
blob: 6953dad58b630f65b973e7a2fe3c3d2450ac0a29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@charset 'UTF-8';

.tooltip {
    .tooltip-inner {
        font-size: 13px;
        font-weight: 500;
        padding: 3px 10px 4px;
        word-break: break-word;
    }

    &.text-nowrap {
        .tooltip-inner {
            white-space: nowrap;
        }
    }
}

#webrtcTooltip {
    .tooltip-inner {
        word-break: normal;
    }
}