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

26 lines
455 B
SCSS
Raw Normal View History

2019-02-08 16:49:51 +00:00
@import "variables";
.vn-tooltip {
display: none;
position: fixed;
z-index: 150;
2019-02-08 16:49:51 +00:00
background-color: $color-active;
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;
}
}