mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
38a512acad
Co-authored-by: Brian Vaughn <bvaughn@fb.com>
20 lines
348 B
CSS
20 lines
348 B
CSS
.DevTools {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: var(--color-background);
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.TabContent {
|
|
flex: 1 1 100%;
|
|
overflow: auto;
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
.DevTools, .DevTools * {
|
|
box-sizing: border-box;
|
|
-webkit-font-smoothing: var(--font-smoothing);
|
|
}
|