Skip to content

Commit

Permalink
Use variable breakpoints instead of hardcoded number.
Browse files Browse the repository at this point in the history
  • Loading branch information
shendy-a8c committed Dec 2, 2024
1 parent 13db0c1 commit ef892cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/payment-details/summary/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
.payment-details-summary {
display: flex;
flex: 1;
@include breakpoint( '<660px' ) {
@media screen and ( max-width: $break-medium ) {
flex-direction: column;
}

Expand Down Expand Up @@ -109,7 +109,7 @@
justify-content: initial;
flex-direction: column;
flex-wrap: nowrap;
@include breakpoint( '>660px' ) {
@media screen and ( min-width: $break-medium ) {
justify-content: flex-start;
align-items: flex-end;
}
Expand Down

0 comments on commit ef892cf

Please sign in to comment.