11 lines
249 B
Plaintext
11 lines
249 B
Plaintext
@mixin adjust-location($x, $y) {
|
|
@if unitless($x) {
|
|
@warn "Assuming #{$x} to be in pixels";
|
|
$x: 1px * $x;
|
|
}
|
|
@if unitless($y) {
|
|
@warn "Assuming #{$y} to be in pixels";
|
|
$y: 1px * $y;
|
|
}
|
|
position: relative; left: $x; top: $y;
|
|
} |