Skip to content
This repository has been archived by the owner on Feb 23, 2021. It is now read-only.

Commit

Permalink
Merge pull request #234 from redpik/dev
Browse files Browse the repository at this point in the history
[-] SCSS : don't need a border radius mixin
  • Loading branch information
kpodemski committed Jun 23, 2016
2 parents 890d66f + a483bf3 commit 4f11da8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions themes/community-theme-16/sass/_vendor_mixins.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
@import "vendor/bootstrap/bootstrap/mixins";
@import "vendor/font-awesome/font-awesome/mixins";

@mixin border-radius($radius) {
border-radius: $radius;
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
margin-bottom: 14px;
padding: 12px 8px;
border: 1px solid $ps-border-color;
@include border-radius(3px);
border-radius: 3px;
a.product_img_link {
border: 1px solid $ps-border-color;
display: block;
Expand Down
2 changes: 1 addition & 1 deletion themes/community-theme-16/sass/product.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ $zoom-in-size: 110px;
line-height: $zoom-in-size;
margin-top: -($zoom-in-size / 2);
margin-left: -($zoom-in-size / 2);
@include border-radius($zoom-in-size / 2);
border-radius: $zoom-in-size / 2;
font-size: 3em;
color: #fff;
text-align: center;
Expand Down

0 comments on commit 4f11da8

Please sign in to comment.