mirror of
https://github.com/facebook/react.git
synced 2026-02-26 17:45:07 +00:00
* Moved Profiler views into Profiler folder * Tweaked Profiler tooltip CSS styles * Tweaked Tooltip positioning code
30 lines
356 B
CSS
30 lines
356 B
CSS
.Component {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.Item {
|
|
margin-top: 0.25rem;
|
|
}
|
|
|
|
.Key {
|
|
font-family: var(--font-family-monospace);
|
|
font-size: var(--font-size-monospace-small);
|
|
line-height: 1;
|
|
}
|
|
|
|
.Key:first-of-type::before {
|
|
content: ' (';
|
|
}
|
|
|
|
.Key::after {
|
|
content: ', ';
|
|
}
|
|
|
|
.Key:last-of-type::after {
|
|
content: ')';
|
|
}
|
|
|
|
.Label {
|
|
font-weight: bold;
|
|
}
|