-
Notifications
You must be signed in to change notification settings - Fork 6
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
Fabricius Seifert
committed
Feb 20, 2024
1 parent
1ef9506
commit ec680e5
Showing
12 changed files
with
246 additions
and
74 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
.c_CartPage { | ||
margin: 0 auto; | ||
max-width: 800px; | ||
max-width: 1000px; | ||
} | ||
|
||
.c_CartPage__lineItems { | ||
|
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 |
---|---|---|
@@ -1,9 +1,36 @@ | ||
.d_ProductPage { | ||
margin: 0 auto; | ||
max-width: 800px; | ||
max-width: 1000px; | ||
} | ||
|
||
.d_ProductPage_details { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: flex-start; | ||
} | ||
|
||
.d_ProductPage__title { | ||
margin: 0; | ||
font-size: 40px; | ||
} | ||
|
||
.d_ProductPage__highlights { | ||
padding: 0; | ||
list-style: none; | ||
} | ||
|
||
.d_ProductPage__highlights li { | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.d_ProductPage__variants { | ||
display: flex; | ||
flex-wrap: wrap; | ||
list-style: none; | ||
padding: 0; | ||
} | ||
|
||
.d_ProductPage__variants li { | ||
white-space: nowrap; | ||
padding: 0 0.5rem 0 0; | ||
} |
Oops, something went wrong.