1
1
mirror of https://github.com/primer/css.git synced 2024-12-20 20:51:38 +03:00
css/modules/primer-popover/lib/popover.scss

47 lines
706 B
SCSS
Raw Normal View History

2017-10-26 23:31:29 +03:00
.Popover {
left: 50%;
z-index: 20;
width: 235px;
margin-top: 30px;
margin-left: -118px;
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
// Carets
&::before,
&::after {
position: absolute;
display: inline-block;
content: "";
}
&::before {
top: -16px;
right: 109px;
left: auto;
border: 8px solid transparent;
border-bottom-color: rgba(0, 0, 0, 0.15);
}
&::after {
top: -14px;
right: 110px;
left: auto;
border: 7px solid transparent;
border-bottom-color: $bg-white;
}
&.top-right {
left: auto;
width: 330px;
margin-top: 45px;
&::before {
right: 20px;
}
&::after {
right: 21px;
}
}
}