Skip to content

Commit

Permalink
fix(storefront): BCTHEME-904 Quick View Modal "Close" bubble is sligh…
Browse files Browse the repository at this point in the history
…tly off center
  • Loading branch information
jordanarldt committed Oct 7, 2021
1 parent 74b4671 commit e2e2d37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
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
- Fixed Quick View modal "X" button focus bubble being slightly off center [#2130](https://github.com/bigcommerce/cornerstone/pull/2130)

## 6.1.0 (09-03-2021)
- Fixed images placeholder on hero carousel shifted on mobile when slide has content. [#2112](https://github.com/bigcommerce/cornerstone/pull/2112)
Expand Down
4 changes: 2 additions & 2 deletions assets/scss/common/_focus-tooltip.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
border-width: remCalc(10px);
content: " ";
position: absolute;
right: 0;
right: 20%;
top: 50%;
}

Expand All @@ -18,7 +18,7 @@
font-size: 1rem;
padding: remCalc(4px) remCalc(6px);
position: absolute;
right: 0;
right: 20%;
top: 100%;
white-space: nowrap;
}
Expand Down

0 comments on commit e2e2d37

Please sign in to comment.