No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_popover.scss 241B

123456789101112131415161718192021
  1. //
  2. // Popover
  3. //
  4. .popover {
  5. border: 0;
  6. }
  7. .popover-header {
  8. font-weight: $font-weight-bold;
  9. }
  10. // Alternative colors
  11. @each $color, $value in $theme-colors {
  12. .popover-#{$color} {
  13. @include popover-variant($value);
  14. }
  15. }