Files
habitica/website/client/assets/scss/popover.scss
T
reisturm 6724413ce9 Fixed styling bug on stats profile page. (#11187)
* Fixed styling bug on stats profile page.

* 24 px popover-content-titleonly
2019-07-12 16:02:33 +02:00

44 lines
697 B
SCSS

.popover {
border-radius: 4px;
background-color: rgba($gray-10, 0.96);
box-shadow: 0 2px 2px 0 rgba($black, 0.16), 0 1px 4px 0 rgba($black, 0.12);
&::after, &::before, .arrow {
display: none;
}
.popover-header {
display: none;
}
}
.popover-title-only {
color: $white;
margin-bottom: 24px;
}
.popover-body {
padding: 12px 16px;
text-align: center;
color: $gray-500;
font-size: 12px;
line-height: 1.33;
}
.popover-content-title {
color: $white;
line-height: 1.14;
}
.popover-content-text:not(:last-child) {
margin-bottom: 16px;
}
.popover-content-title:last-child {
margin-bottom: 0px;
}
.popover-content-text:last-child {
margin-bottom: 0px;
}