Files
react/src/devtools/views/Elements.css
T

26 lines
399 B
CSS

.Elements {
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
background-color: var(--color-background);
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) {
.Elements {
flex-direction: column;
}
}