Adam Argyle

Results 412 comments of Adam Argyle

> > is postcss-combine-duplicated-selectors still misbehaving? i agree it's normally not advised, but for the bundling of props it's great. > > yup, maybe better to create a dedicated plugin...

I added this back in to `postcss.config.cjs` to remove the `.focus-visible` or `.focus-within` conveniences, and then disabled `:has()` so it just passes through. ```js 'has-pseudo-class': false, 'focus-visible-pseudo-class': false, 'focus-within-pseudo-class': false,...

- PurgeCSS - Removes all of normalize (lolol) - DropCSS - Hangs forever (turds) - PurifyCSS - Removes nothing (maybe your HTML is empty? i dunno.) - UnCSS - Removes...

https://fffuel.co/tttexture/

nice, i'm down to see your proposal. i agree the naming could be clearer.

excellent observations and nice customizations 👍🏻 these colors have been tested across a lot of bummer screens too, and account for that variety. the next version of colors will be...

nice, there's definitely room to offer multiple logical and physical fluid props huh? def agree that shipping the physical ones by default is less great than the logical versions.

i see! i figured folks would use either or but you're wanting to have both on the page? I also imagined the oklch grays would overtake the old ones as...

rad and helpful demo! ❤️ i played around with it for long enough to create a fork https://codepen.io/argyleink/pen/MWzGGxa and added an option 3. **side note:** all the blobby merging effects...

nice! like adding this to normalize is what you're thinking? ```css blockquote { hanging-punctuation: first last; &::before { content: open-quote; } &::after { content: close-quote; } } ```