Keith Grant
Keith Grant
stay tuned 👀
During development, I want to be able to play with those values in the browser DevTools, so it would be great if they were the same format as authored. (I...
Misc thoughts/questions: @ai suggested [vanilla CSS, PreCSS, and CSS Modules](https://github.com/stylelint/stylelint/issues/2532#issuecomment-297687403) If I understand PreCSS correctly, it's very similar to SCSS. I'm not sure what sets CSS Modules syntax apart from...
I'm in favor of not aligning (i.e. indenting normally). This avoids weird-looking "hanging" declarations beneath: ```css .wonky { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; color: green; } ```...
I’m not particularly happy with the formatting in that example… the selector inside is double-indented. Is it better to wrap parens around the whole thing, along these lines? ```css @media...
One thing I do find odd in this config is a required empty line before a comment. I would do away with that. It also requires an empty line between...
I am in favor of the double-colon, because I'm a pedant. On the other side, @benfrain has [voiced support](https://gist.github.com/keithjgrant/d35fc6a72253c91a60c6c6c15f5ce6ff#gistcomment-2092655) for single-colon syntax My reasons for supporting double: * It's technically...
It looks like the current build tooling is broken as is with the recently updated version of micropub-helper, so this needs to be done soon
On a related note, in some cases it converts `oklch` to `oklab` despite `oklab` being markedly more verbose: ``` --slate-1: oklch(98% 0.006 251deg); ``` is getting converted (inside a feature...
Correction: don't use `vh`. Make it instead a grid item as part of a larger layout. The contents of the rest of the grid can affect the size of the...