Skip to content

Commit

Permalink
fix(table-pagination) hide description when under the small breakpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
lorumic committed Feb 12, 2024
1 parent 432966b commit 00da44a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/components/TablePagination/TablePagination.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,18 @@
.pagination {
align-items: baseline;
display: flex;
margin-top: 1.2rem;
margin: $spv--large 0;

@media screen and (max-width: $breakpoint-small) {
justify-content: flex-end;
}

.description {
flex-grow: 1;

@media screen and (max-width: $breakpoint-small) {
display: none;
}
}

.back {
Expand Down

0 comments on commit 00da44a

Please sign in to comment.