Skip to content

Commit

Permalink
Merge pull request #42 from OpenLMIS/OIS-24-scroll-check
Browse files Browse the repository at this point in the history
OIS-24: fixed pagination
  • Loading branch information
DominikNoga authored Sep 13, 2024
2 parents 52e2c8b + 0e0db7d commit 4aa811f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/openlmis-pagination/_openlmis-pagination.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ Styleguide 2.3
margin-bottom: $space-size;
> ul {
@extend .pagination;
margin: 0;
@include margin-left(1em);
margin: 0 2px;
border-color: $border-color;
display: flex;
flex-direction: row;
Expand All @@ -45,7 +44,12 @@ Styleguide 2.3
@extend .openlmis-pagination-link;
}
> li:last-child > a {
@include border-right(1px);
[dir="ltr"] & {
border-right-width: 1px;
}
[dir="rtl"] & {
border-left-width: 1px;
}
}

.active a {
Expand Down

0 comments on commit 4aa811f

Please sign in to comment.