diff --git a/src/stories/Library/Lists/fee-list/fee-list.scss b/src/stories/Library/Lists/fee-list/fee-list.scss index 62965c282..501a552c6 100644 --- a/src/stories/Library/Lists/fee-list/fee-list.scss +++ b/src/stories/Library/Lists/fee-list/fee-list.scss @@ -1,6 +1,8 @@ .fee-list-page { background: $c-global-primary; padding: $s-md; + position: relative; + z-index: 0; @include breakpoint-m { padding: $s-6xl; diff --git a/src/stories/Library/Modals/modal-loan/modal-loan.scss b/src/stories/Library/Modals/modal-loan/modal-loan.scss index 5065474d8..a8854aa4d 100644 --- a/src/stories/Library/Modals/modal-loan/modal-loan.scss +++ b/src/stories/Library/Modals/modal-loan/modal-loan.scss @@ -1,5 +1,3 @@ -$MODAL_LOAN_CONTAINER_WIDTH: 1000px; - .modal-loan { flex-direction: column; align-items: center; @@ -7,7 +5,7 @@ $MODAL_LOAN_CONTAINER_WIDTH: 1000px; } .modal-loan__container { - max-width: $MODAL_LOAN_CONTAINER_WIDTH; + width: 100%; overflow: scroll; }