Files
react/packages/react-devtools-timeline/src/Timeline.css
T
BIKI DAS 53ac219378 Devtools:-Removed unused CSS (#27032)
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
2023-07-03 12:16:04 +01:00

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;
}