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
35 lines
568 B
CSS
35 lines
568 B
CSS
.Content {
|
|
width: 100%;
|
|
position: relative;
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
|
|
.ErrorMessage {
|
|
margin: 0.5rem 0;
|
|
color: var(--color-dim);
|
|
font-family: var(--font-family-monospace);
|
|
font-size: var(--font-size-monospace-normal);
|
|
}
|
|
|
|
.Row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-flow: wrap;
|
|
}
|
|
|
|
.EmptyStateContainer {
|
|
text-align: center;
|
|
}
|
|
|
|
.Header {
|
|
font-size: var(--font-size-sans-large);
|
|
margin-bottom: 0.5rem;
|
|
}
|