1
0
Fork 0
mirror of https://github.com/uhIgnacio/igna.rocks.git synced 2024-08-15 02:23:12 +00:00
igna.rocks/assets/js/scss/effects/speech-bubbles/_bubble-top.scss

26 lines
579 B
SCSS
Raw Normal View History

2021-08-31 15:30:22 +00:00
/* Bubble Top */
@mixin bubble-top {
@include hacks();
position: relative;
&:before {
pointer-events: none;
position: absolute;
z-index: -1;
content: '';
border-style: solid;
@include prefixed(transition-duration, $mediumDuration);
@include prefixed(transition-property, transform);
left: calc(50% - #{$tipWidth});
top: 0;
border-width: 0 $tipWidth $tipHeight $tipWidth;
border-color: transparent transparent $tipColor transparent;
}
&:hover:before,
&:focus:before,
&:active:before {
@include prefixed(transform, translateY(-($tipHeight)));
}
}