summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc/_sila/_pagination.scss
blob: d38ce5d28fcf196f3338d94987e50acfead81e69 (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");
  }
}