summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc/custom/_pagination.scss
blob: bce593effbc00173d3a068b075f0951a19667b13 (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
28
29
30
31
32
33
34
.table-pagination-select {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  select {
    width: fit-content;
  }
  label {
    margin-left: $spacer;
    line-height: $spacer * 2;
  }
}

.b-pagination {
  @include media-breakpoint-up(sm) {
    justify-content: flex-end;
  }

  .page-link {
    border: transparent;
    &:hover {
      background-color: transparent;
    }
    &:focus {
      box-shadow: none;
    }
  }
  .page-item.active button {
    color: theme-color("dark");
    background-color: color("white");
    border-color: transparent;
    box-shadow: inset 0px -3px theme-color("primary");
  }
}