-
Notifications
You must be signed in to change notification settings - Fork 754
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f4a634f
commit 40d3874
Showing
18 changed files
with
508 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
@include desktop() { | ||
.card-page { | ||
@include paddingInline($paddingLaptop); | ||
width: $breakpoint__l; | ||
} | ||
.order-content__item-ored { | ||
width: 602px; | ||
} | ||
.order-content__checkout-block { | ||
width: 298px; | ||
} | ||
.checkout-block__checkout-button { | ||
width: 90%; | ||
} | ||
} | ||
@include laptop() { | ||
.card-page { | ||
@include paddingInline(0); | ||
width: $breakpoint__m; | ||
} | ||
.order-content__item-ored { | ||
width: 513px; | ||
height: 100px; | ||
} | ||
.order-content__checkout-block { | ||
width: 234px; | ||
} | ||
.checkout-block__checkout-button { | ||
width: 90%; | ||
} | ||
.item-ored__product-img { | ||
margin-left: 15px; | ||
} | ||
.item-ored__delete-button { | ||
margin-left: 15px; | ||
} | ||
.item-ored__product-name { | ||
margin-left: 20px; | ||
width: 178px; | ||
} | ||
.item-ored__price-product { | ||
margin-inline: 21px 20px; | ||
} | ||
} | ||
@include tablet() { | ||
.card-page { | ||
@include paddingInline(10); | ||
@include width($breakpoint__s); | ||
} | ||
.card-page__order-content { | ||
flex-direction: column; | ||
} | ||
.order-content__item-ored { | ||
width: 100%; | ||
} | ||
.order-content__checkout-block { | ||
width: 100%; | ||
} | ||
} | ||
@include mobile() { | ||
.card-page { | ||
@include paddingInline(10); | ||
@include width($breakpoint__sx); | ||
} | ||
.order-content__item-ored { | ||
flex-direction: column; | ||
height: 328px; | ||
justify-content: center; | ||
gap: 10px; | ||
padding-top: 10px; | ||
} | ||
.item-ored__product-name { | ||
margin-left: 49px; | ||
} | ||
.img-container { | ||
flex-direction: row-reverse; | ||
gap: 10px; | ||
} | ||
.item-ored__product-img { | ||
margin-top: 30px; | ||
width: 100px; | ||
height: 100px; | ||
} | ||
.item-ored__product-name { | ||
margin-block: 5px; | ||
} | ||
.item-ored__price-product { | ||
margin-block: 5px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
@include desktop() { | ||
.favorites-page { | ||
@include paddingInline($paddingLaptop); | ||
width: $breakpoint__l; | ||
} | ||
} | ||
@include laptop() { | ||
.favorites-page { | ||
@include paddingInline(0); | ||
width: $breakpoint__m; | ||
} | ||
} | ||
@include tablet() { | ||
.favorites-page { | ||
@include paddingInline(10); | ||
@include width($breakpoint__s); | ||
} | ||
} | ||
@include mobile() { | ||
.favorites-page { | ||
@include paddingInline(10); | ||
@include width($breakpoint__sx); | ||
} | ||
} |
Oops, something went wrong.