bootstrap-less-port
Version:
A Less port of Bootstrap v4
20 lines (16 loc) • 515 B
text/less
// Do not forget to update getting-started/theming.md!
:root {
each(@colors, #(@value, @color) {
--@{color}: @value;
});
each(@theme-colors, #(@value, @color) {
--@{color}: @value;
});
each(@grid-breakpoints, #(@value, @bp) {
--breakpoint-@{bp}: @value;
});
// Use `inspect` for lists so that quoted items keep the quotes.
// See https://github.com/sass/sass/issues/2383#issuecomment-336349172
--font-family-sans-serif: @font-family-sans-serif;
--font-family-monospace: @font-family-monospace;
}