Skip to content

Commit

Permalink
Fix issue: Changing Items per page value doesn't update the table (#835)
Browse files Browse the repository at this point in the history
  • Loading branch information
nanfuka authored Oct 10, 2023
1 parent 34e1a4f commit 82f043b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packages/esm-patient-list-app/src/overlay.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,19 @@
@import './style.scss';

.desktopOverlay {
position: sticky;
position: fixed;
right: 0;
width: 37rem;
top: spacing.$spacing-09;
height: calc(100vh - 3rem);
min-width: 27rem;
background-color: $ui-02;
background-color: $ui-01;
border-left: 1px solid $text-03;
overflow: hidden;
display: grid;
grid-template-rows: auto 1fr auto;
bottom: 0;
overflow-y: auto;
z-index: 99999;
}

.tabletOverlay {
Expand Down

0 comments on commit 82f043b

Please sign in to comment.