mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
53ac219378
I tried to check out for the CSS bundle using the [eslint-plugin-css-modules](https://www.npmjs.com/package/eslint-plugin-css-modules), and ran it locally , seems like There are lot of unused styles and classes present . I have attached the output below after running the lint command. https://gist.github.com/Biki-das/647ceb7383b43cca9c8619e1dc33fe0d All the shared.css files should not be touched i feel as they are being used randomly by some file Thoughts @hoxyq
33 lines
626 B
CSS
33 lines
626 B
CSS
.Column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.Title {
|
|
font-size: var(--font-size-sans-large);
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.Version {
|
|
color: var(--color-bridge-version-number);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.NpmCommand {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 0.25rem 0.25rem 0.25rem 0.5rem;
|
|
background-color: var(--color-bridge-version-npm-background);
|
|
color: var(--color-bridge-version-npm-text);
|
|
margin: 0;
|
|
font-family: var(--font-family-monospace);
|
|
font-size: var(--font-size-monospace-large);
|
|
}
|
|
|
|
.Paragraph {
|
|
margin: 0.5rem 0;
|
|
}
|
|
|
|
.Link {
|
|
color: var(--color-link);
|
|
} |