Files
react/src/devtools/views/Components/Components.css
T
2019-04-02 19:58:18 +01:00

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