1
0
Fork 0
This commit is contained in:
Chocobozzz 2023-02-21 09:32:14 +01:00
parent 667d909b66
commit 7bbc062dcc
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 6 additions and 6 deletions

View File

@ -919,11 +919,11 @@
}
@mixin margin ($arg1: null, $arg2: null, $arg3: null, $arg4: null) {
@if $arg2 ==null and $arg3 ==null and $arg4 ==null {
@if $arg2 == null and $arg3 == null and $arg4 == null {
@include margin-original($arg1, $arg1, $arg1, $arg1);
} @else if $arg3 ==null and $arg4 ==null {
} @else if $arg3 == null and $arg4 == null {
@include margin-original($arg1, $arg2, $arg1, $arg2);
} @else if $arg4 ==null {
} @else if $arg4 == null {
@include margin-original($arg1, $arg2, $arg3, $arg2);
} @else {
@include margin-original($arg1, $arg2, $arg3, $arg4);
@ -966,11 +966,11 @@
@mixin padding ($arg1: null, $arg2: null, $arg3: null, $arg4: null) {
@if $arg2 ==null and $arg3 ==null and $arg4 ==null {
@if $arg2 == null and $arg3 == null and $arg4 == null {
@include padding-original($arg1, $arg1, $arg1, $arg1);
} @else if $arg3 ==null and $arg4 ==null {
} @else if $arg3 == null and $arg4 == null {
@include padding-original($arg1, $arg2, $arg1, $arg2);
} @else if $arg4 ==null {
} @else if $arg4 == null {
@include padding-original($arg1, $arg2, $arg3, $arg2);
} @else {
@include padding-original($arg1, $arg2, $arg3, $arg4);