python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Warning: true is not a PostCSS plugin
I have an issue while building a project, this error keeps popping up:
Warning: true is not a PostCSS plugin.
This error was not visible before an upgrade was done from node v.10.x.x to v.16.14.x.
Her...
Torjescu Sergiu
Votes: 0
Answers: 1
How to setup PostCSS nesting in Vite?
This is what I’ve tried so far:
Installed via npm install postcss-nesting --save-dev
Setup vite.config.js:
import { fileURLToPath, URL } from 'url';
import { defineConfig } from 'vite';
import vue...
NicOwen
Votes: 0
Answers: 2
Rewrite CSS Nesting as SASS
So I came across this CSS snippet here
.sun-and-moon {
& > :is(.moon, .sun, .sun-beams) {
transform-origin: center center;
}
& > :is(.moon, .sun) {
fill: var(--icon-fill);...
Vikash Balasubramanian
Votes: 0
Answers: 1
Tailwind: opacity in color class breaks styling in :visited pseudo selector
I have a project with Tailwind and I am trying to set the styles for a :visited element like this:
class="visited:text-red"
That works in Firefox but in Chrome and Safari it does not apply t...
v-moe
Votes: 0
Answers: 1