Alaguraj0361 4785c22a25
Some checks failed
Build and Deploy Build Output / build (push) Has been cancelled
first commit
2025-11-07 10:51:36 +05:30

30 lines
564 B
SCSS

@for $i from 1 through $space-count {
.ml-#{5 * $i} {
margin-right: 5px * $i;
margin-left: 0;
}
}
/*-- margin Right --*/
@for $i from 1 through $space-count {
.mr-#{5 * $i} {
margin-left: 5px * $i;
margin-right: 0;
}
}
/*-- Padding Left --*/
@for $i from 1 through $space-count {
.pl-#{5 * $i} {
padding-left: 0;
padding-right: 5px * $i;
}
}
/*-- Padding Right --*/
@for $i from 1 through $space-count {
.pr-#{5 * $i} {
padding-right: 0;
padding-left: 5px * $i;
}
}