Skip to content

Commit

Permalink
fix: Replace incorrect variables and hard coded value
Browse files Browse the repository at this point in the history
  • Loading branch information
remydenton authored and sghoweri committed Dec 26, 2017
1 parent b6c7535 commit 99772ce
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,16 +167,16 @@ $bolt-bg-shape-offset-side-large: $bolt-bg-shape-offset-bottom-large * 1.2;
position: absolute;
transform: rotate(-45deg);
right: $bolt-bg-shape-offset-side-default;
bottom: $bolt-bg-shape-offset-side-default;
bottom: $bolt-bg-shape-offset-bottom-default;

@include respond-to(small) {
right: $bolt-bg-shape-offset-side-small;
bottom: $bolt-bg-shape-offset-side-small;
bottom: $bolt-bg-shape-offset-bottom-small;
}

@include respond-to(large) {
right: $bolt-bg-shape-offset-side-large;
bottom: -300px;
bottom: $bolt-bg-shape-offset-bottom-large;
}
}

Expand Down

0 comments on commit 99772ce

Please sign in to comment.