mirror of
https://github.com/developit/microbundle.git
synced 2026-01-25 14:06:50 +00:00
* feat: adds a `--cssmodules` option * chore: Allow scopeName to come from args * chore: --css-modules is now tristate * docs: Wrote docs around how to use css-modules * chore: Fixed all tristate logic, and readable first * test: Wrote tests for all avenues * chore: Add's newlines to the end of files
10 lines
121 B
CSS
10 lines
121 B
CSS
body {
|
|
display: flex;
|
|
color: red;
|
|
background: blue;
|
|
}
|
|
|
|
.test_class_that_should_be_scoped {
|
|
background-color: blue;
|
|
}
|