mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
27 lines
437 B
CSS
27 lines
437 B
CSS
.Components {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
background-color: var(--color-background);
|
|
color: var(--color-text-color);
|
|
font-family: var(--font-family-sans);
|
|
}
|
|
|
|
.TreeWrapper {
|
|
flex: 0 0 65%;
|
|
overflow: auto;
|
|
}
|
|
|
|
.SelectedElementWrapper {
|
|
flex: 0 0 35%;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
@media screen and (max-width: 600px) {
|
|
.Components {
|
|
flex-direction: column;
|
|
}
|
|
}
|