uniformcss
uniformcss copied to clipboard
A fully configurable utility class generator and CSS framework built for Sass projects.
## how did you make it ```scss @include apply("") ``` # my api ### utility api ```scss $utilities: () !default; $separator: \:; $xs: "xs" !default; $breakpoints: ( $xs: 0, sm:...
In the `grid-template-column` documentation the classes are missing an "s" at the end of them. Current: `grid-col-12` Corrected: `grid-cols-12` **To Reproduce** Steps to reproduce the behavior: 1. Go to [https://uniformcss.com/api-reference/#grid-template-columns](https://uniformcss.com/api-reference/#grid-template-columns)...
This: ```scss pre, code { font-family: var(--font-mono); } ``` is [here](https://github.com/ThinkUniform/uniformcss/blob/6a4aee9806a0aa2125dcea2b247f8c427ce2cd71/uniform/core/starter/_index.scss#L41). But if `css-variables` is configured to `false` CSS vars aren't generated.
When I first saw what your framework was capable of, this is what I immediately thought of: that I could use it to very efficiently write traditional CSS — like...
`reset` sets `text-rendering` to `optimizeSpeed` [here](https://github.com/ThinkUniform/uniformcss/blob/5c8c87927a00c4121051e766b5fb56147c2b71c8/uniform/core/reset/_index.scss#L45). I suggest not setting it to anything anywhere. First, I'm not sure that it really qualifies as a "reset" kind of setting at all;...
I was wondering if you're able to add the feature to be able to use something like 2xl on the screens config without the output throwing an interpolation error: screens:...
**Describe the bug** I have a set of classes: flex flex-col sm:flex-row sm:gutter-x-16 gutter-y-8 sm:gutter-y-0 But the margin-reset in the gutter-y-0 stops gutter-x-16, so there is no space between elements...