mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 10:58:20 -07:00
Remove unused sass mixins
This commit is contained in:
parent
ffa52f0f4e
commit
0b61d60fb8
@ -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…
Reference in New Issue
Block a user