Cosmin Popovici

Results 167 comments of Cosmin Popovici

There isn't any `--background-color-*` var defined in `@theme`: https://github.com/tailwindlabs/tailwindcss/blob/next/packages/tailwindcss/theme.css If you want to disable the color namespace you need: ```css @theme { --color-*: initial; /* or, just for blue: --color-blue-*:...

Oh, ok, then you don't even need to reset the namespace: ```css @import "tailwindcss"; @theme { --background-color-brand: blue; } ``` ```html Hello world ``` Demo: https://play.tailwindcss.com/jPdur1FNp2

Right, looks like some of those are read-only, was just looking to unset `--text-decoration-*` so that I can have it output the old `text-decoration: ` syntax, but there isn't any...

Did this ever work on GitHub Actions? Looks like a hot TS mess with many outdated dependencies. @Scrum do you want to step in here? I don't know and won't...

Alternatively I can just create a PR for the readme, but there are several pending PRs with high severity alerts that should be fixed/merged. The plan was to first update...

MSO comments are just a string, strings are not parsed into nodes so unfortunately this can't work.

Just for reference, seems to work fine in the playground: https://play.tailwindcss.com/pJzIWUYCMx?file=css

I think we can use the `match` helper in PostHTML to figure out whether a class or id exists in the source HTML, and remove it from the CSS if...

Yes, [here you go](https://res.cloudinary.com/cossssmin/video/upload/v1575288666/editorjs-issue-933.mp4). As you can see, depending on where I click outside (top half or bottom half of a block), it adds a new block at the top...

Been a while, but I need to get back to this, so... 😊 Here's a more visual representation: ![image](https://user-images.githubusercontent.com/1656595/98178900-41d9f500-1f06-11eb-9fc6-38a35bc2d443.png) I've highlighted the `ce-block` element with a dark gray (centered), and...