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

$primary: #2872ae;

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

.popover {
  transform: translate3d(-425px, 0, -34px) !important;
  min-width: 350px !important;
  max-width: 425px !important;
  border: none !important;
  border-radius: 1.5rem !important;
  padding: 0 !important;
  background-color: $primary !important;
  .popover-body {
    padding: 0 !important;
  }
}

.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after {
  border-left-color: $primary !important;
}

.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after {
  border-right-color: $primary !important;
}

.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after {
  border-top-color: $primary !important;
}

.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  border-bottom-color: $primary !important;
}

.list-group-item.active {
  background-color: $primary !important;
  border-color: $primary !important;
}

.custom-radio .custom-control-label::before {
  background-color: $primary !important;
  border-color: $white !important;
  border-width: 2px !important;
}

.custom-control-input {
  border-color: $white !important;
  background-color: $primary !important;
  color: $primary !important;
  &:checked ~ .custom-control-label::before {
    border-color: $white !important;
    color: #fff !important;
    background-color: $primary !important;
  }
  &:focus ~ .custom-control-label::before {
    border-color: $white !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.7) !important;
  }
}

.carousel,
.carousel-inner,
.item {
  height: 100% !important;
  &:focus {
    outline: none !important;
  }
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23808080' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23808080' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

.carousel-indicators li {
  background-color: #808080 !important;
}

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