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

26 lines
456 B
SCSS

@import "variables";
.vn-tooltip {
display: none;
position: fixed;
z-index: 150;
background-color: $color-bg-dark;
color: $color-active-font;
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;
}
}