bootstrap-override.scss 1.13 KB
@import "../../../node_modules/bootstrap/scss/functions";
@import "../../../node_modules/bootstrap/scss/variables";

$theme-colors: (
  primary: #2872ae,
  light: white
);

.popover {
  min-width: 470px !important;
  max-width: auto !important;
  border: none !important;
  border-radius: 1.5rem !important;
  padding: 0 !important;
  .popover-body {
    padding: 0 !important;
  }
}

.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after {
    border-left-color: #2872ae !important; // Any color here
}

.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after {
    border-right-color: #2872ae !important; // Any color here
}

.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after {
    border-top-color: #2872ae !important; // Any color here
}

.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after {
    border-bottom-color: #2872ae !important; // Any color here
}

.list-group-item.active {
  background-color: #2872ae !important;
  border-color: #2872ae !important;
}

@import "../../../node_modules/bootstrap/scss/bootstrap.scss";