24 lines
411 B
SCSS
24 lines
411 B
SCSS
|
.vn-tooltip {
|
||
|
display: none;
|
||
|
position: fixed;
|
||
|
z-index: 150;
|
||
|
background-color: #333;
|
||
|
color: white;
|
||
|
border-radius: .2em;
|
||
|
|
||
|
&.show {
|
||
|
display: inherit;
|
||
|
}
|
||
|
&.text {
|
||
|
max-width: 320px;
|
||
|
padding: 15px;
|
||
|
}
|
||
|
& > .arrow {
|
||
|
position: absolute;
|
||
|
width: 0;
|
||
|
height: 0;
|
||
|
border-style: solid;
|
||
|
border-color: transparent;
|
||
|
}
|
||
|
}
|