PlasmoHQ / plasmo

🧩 The Browser Extension Framework
https://www.plasmo.com
MIT License
10.31k stars 358 forks source link

[BUG] Incorrect CSS compilation #969

Closed kirankunigiri closed 5 months ago

kirankunigiri commented 5 months ago

What happened?

Plasmo incorrectly compiles CSS files.

In my original CSS file, style.css, I have a class with the rule:

.mic-btn {
    padding: 10px 10px !important;
}

In the compiled css file in the build folder, it has been compiled into the file style.21df28e0.css with the following rule:

.mic-btn {
    padding: 10px !important;
}

This is not the same as the original and is also incorrect CSS.

Version

Latest

What OS are you seeing the problem on?

MacOSX

What browsers are you seeing the problem on?

Chrome

Relevant log output

No response

(OPTIONAL) Contribution

Code of Conduct

kirankunigiri commented 5 months ago

Never mind, I was really sleep deprived and forgot that they're literally the same thing. My bad.