Commit 9509e650 authored by shadMod's avatar shadMod 💬

added: float, display-inline and margin set (missing x and y)

parent e5d29abc
...@@ -200,4 +200,42 @@ $sizes: (25: "25%", 50: "50%", 75: "75%", 100: "100%", "auto": "auto"); ...@@ -200,4 +200,42 @@ $sizes: (25: "25%", 50: "50%", 75: "75%", 100: "100%", "auto": "auto");
.shadow-none { .shadow-none {
box-shadow: none !important; box-shadow: none !important;
} }
\ No newline at end of file
.float-start {
float: left !important;
}
.float-end {
float: right !important;
}
.float-none {
float: none !important;
}
.text-dark {
color: #212529 !important;
}
.align-i-center {
align-items: center !important;
}
.d-inline {
display: inline !important;
}
.d-inline-block {
display: inline-block !important;
}
$size_width: (1: "0.25rem", 2: "0.5rem", 3: "1rem", 4: "1.5rem", 5: "3rem");
$positions: ("": "","t": "-top", "e": "-right", "b": "-bottom", "s": "-left");
@each $nr, $width in $size_width {
@each $name, $position in $positions {
.m#{$name}-#{$nr} {
margin#{$position}: #{$width} !important;
}
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment