silphius/app/react-components/devtools.module.css

23 lines
358 B
CSS
Raw Normal View History

2024-07-08 14:07:26 -05:00
.engineBar {
display: flex;
gap: 16px;
2024-07-08 15:49:23 -05:00
margin-bottom: 16px 0;
2024-07-07 23:30:48 -05:00
}
.devtools {
background-color: #444444;
color: white;
2024-07-08 17:31:07 -05:00
height: 100%;
overflow: hidden;
2024-07-07 23:30:48 -05:00
padding: 16px;
2024-07-08 17:31:07 -05:00
width: 100%;
2024-07-07 23:30:48 -05:00
}
2024-07-08 17:31:07 -05:00
.devtools > :global(.react-tabs) {
display: flex;
flex-direction: column;
height: 100%;
> :global(.react-tabs__tab-panel) {
overflow-y: auto;
}
}