blob: d38ce5d28fcf196f3338d94987e50acfead81e69 [file] [log] [blame]
Yoshie Muranakaf9832b02020-05-12 12:04:46 -07001.table-pagination-select {
2 display: flex;
3 flex-direction: row-reverse;
SurenNewarea35b5a12020-10-13 17:08:20 +05304 justify-content: flex-end;
Yoshie Muranakaf9832b02020-05-12 12:04:46 -07005 select {
6 width: fit-content;
7 }
8 label {
9 margin-left: $spacer;
10 line-height: $spacer * 2;
11 }
12}
13
14.b-pagination {
SurenNewarea35b5a12020-10-13 17:08:20 +053015 @include media-breakpoint-up(sm) {
16 justify-content: flex-end;
17 }
Yoshie Muranakaf9832b02020-05-12 12:04:46 -070018 .page-item.active button {
Yoshie Muranaka01da8182020-07-08 15:46:43 -070019 color: theme-color("dark");
SurenNewarea35b5a12020-10-13 17:08:20 +053020 background-color: color("white");
Yoshie Muranakaf9832b02020-05-12 12:04:46 -070021 border-color: $border-color;
Yoshie Muranaka01da8182020-07-08 15:46:43 -070022 box-shadow: inset 0px -3px theme-color("primary");
Yoshie Muranakaf9832b02020-05-12 12:04:46 -070023 }
24}