Merge pull request #3016 from thornbill/remove-unused-mixins
Remove unused sass mixins
This commit is contained in:
commit
b22d2361db
1 changed files with 0 additions and 23 deletions
|
@ -1,23 +0,0 @@
|
||||||
@mixin background-cover($position) {
|
|
||||||
background-position: $position;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: cover;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin circle($size) {
|
|
||||||
@include square($size);
|
|
||||||
border-radius: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin position($position, $top: null, $right: null, $bottom: null, $left: null) {
|
|
||||||
position: $position;
|
|
||||||
top: $top;
|
|
||||||
right: $right;
|
|
||||||
bottom: $bottom;
|
|
||||||
left: $left;
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin square($size) {
|
|
||||||
height: $size;
|
|
||||||
width: $size;
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue