mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
285a0cae03
[web] Introducing Stylelint as the CSS linter GitOrigin-RevId: 89ee8860cdb3a94949749577b63cde2c3dc213fb
28 lines
441 B
SCSS
28 lines
441 B
SCSS
.tooltip {
|
|
line-height: 20px;
|
|
|
|
@include shadow-md;
|
|
|
|
&.#{$prefix}tooltip-top {
|
|
bottom: -1px !important;
|
|
}
|
|
&.#{$prefix}tooltip-end {
|
|
top: 1px !important;
|
|
left: -1px !important;
|
|
}
|
|
&.#{$prefix}tooltip-bottom {
|
|
top: -1px !important;
|
|
}
|
|
&.#{$prefix}tooltip-start {
|
|
top: 1px !important;
|
|
right: -1px !important;
|
|
}
|
|
}
|
|
|
|
.tooltip-inner {
|
|
text-align: initial;
|
|
|
|
.tooltip-wide & {
|
|
max-width: unset;
|
|
}
|
|
}
|