Files
react/packages/react-devtools-shared/src/devtools/views/Profiler/WhatChanged.css
Brian Vaughn 7e770dae93 Profiler tooltip tweaks (#18082)
* Moved Profiler views into Profiler folder

* Tweaked Profiler tooltip CSS styles

* Tweaked Tooltip positioning code
2020-02-19 10:58:45 -08:00

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