Skip to content

Commit

Permalink
Fix styling of tiered promotions delete icon
Browse files Browse the repository at this point in the history
Previously this trash icon was being partially obscured by the row next
to it, and only the left half of the icon could be clicked. It was also
floating outside of the parent container. This commit fixes these issues
by adding a margin to the row, and placing the icon inside.

It also changes the cursor to a pointer on hover.
  • Loading branch information
jhawthorn committed Mar 31, 2017
1 parent 54a4980 commit 4ea4476
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,14 @@
position: relative;
padding-bottom: 10px;

> .row {
margin-left: 10px;
}

.remove {
position: absolute;
left: -15px;
cursor: pointer;
left: 0;
top: 10px;

&:hover {
Expand Down

0 comments on commit 4ea4476

Please sign in to comment.