Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Draft
- Add mobile and tablet responsiveness for returns list page (ORDERS-7771)
- Add return details page (ORDERS-7751)
- Add new create-return page [#2669](https://github.com/bigcommerce/cornerstone/pull/2669)
- Validate picklist option `available_to_sell` on PDP so Add to Cart is disabled and a "maximum purchasable quantity for {picklist} is {qty}" error is shown when the requested quantity exceeds a selected picklist item's stock, even when the main product still has enough stock [#2684](https://github.com/bigcommerce/cornerstone/pull/2684)
Expand Down
17 changes: 15 additions & 2 deletions assets/scss/components/stencil/account/_account.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,13 @@ $account-backorder-textColor: #757575;
align-items: center;
display: flex;
flex-wrap: wrap;
gap: spacing("single");
gap: spacing("half");
justify-content: space-between;
margin-bottom: spacing("single");

.button {
margin-left: auto;
}
}

.account-listItem-summary-main {
Expand All @@ -72,10 +76,12 @@ $account-backorder-textColor: #757575;

.account-product-title {
margin: 0;
min-width:0;
}

.account-orderStatus-label {
margin: 0;
min-width:0;
}
}

Expand Down Expand Up @@ -148,6 +154,13 @@ $account-backorder-textColor: #757575;
margin: 0 0 spacing("eighth");
text-transform: inherit;

margin: 0 0 spacing("quarter");
Comment thread
cursor[bot] marked this conversation as resolved.
Outdated
font-size: fontSize("smallest");

@include breakpoint("medium") {
font-size: fontSize("smaller");
}
Comment thread
cursor[bot] marked this conversation as resolved.
Outdated

> a {
text-decoration: none;
}
Expand Down Expand Up @@ -247,7 +260,7 @@ $account-backorder-textColor: #757575;
color: stencilColor("color-textSecondary");
font-family: fontFamily("sans");
font-size: fontSize("tiny");
margin: 0 0 spacing("quarter");
margin: 0 0 spacing("eighth");
}


Expand Down