salix/front/core/components/tooltip/style.scss

24 lines
411 B
SCSS
Raw Normal View History

.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;
}
}