summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc/custom/_card.scss
blob: 7e2c50dd03e76126cd1f6ec26f04547017f1dfdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.card {
  border-radius: $border-radius;
  .bg-success {
    background-color: theme-color-light('success')!important;
  }
}

.card-header {
  .card-header-tabs {
    border: none !important;

    .nav-link {
      border: none !important;
      color: $text-secondary;
      font-weight: 500 !important;
      background: none !important;
      &:hover {
        color: $red-hover
      }
    }

    .nav-link.active {
      color: $red-active !important;
      text-decoration: underline;
    }
  }
}