Files
react/packages/react-devtools-shared/src/devtools/views/UnsupportedBridgeProtocolDialog.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

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