summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc/_ibs/_pagination.scss
blob: 97fe01325e6d71d4e4f9652c935d83826440a5c9 (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
.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-item.active button {
    color: theme-color("dark");
    background-color: color("white");
    border-color: $border-color;
    box-shadow: inset 0px -3px theme-color("primary");
  }
}