53 lines
836 B
CSS
53 lines
836 B
CSS
.engineBar {
|
|
display: flex;
|
|
gap: 16px;
|
|
margin-bottom: 16px 0;
|
|
}
|
|
|
|
.devtools {
|
|
background-color: #444444;
|
|
color: white;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
}
|
|
|
|
.devtools form {
|
|
label {
|
|
font-weight: bold;
|
|
:first-child {
|
|
margin-right: 4px;
|
|
}
|
|
}
|
|
input, select, option {
|
|
background-color: #333333;
|
|
color: #ffffff;
|
|
}
|
|
}
|
|
|
|
.devtools > :global(.react-tabs) {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
> :global(.react-tabs__tab-list) {
|
|
margin-bottom: 0;
|
|
}
|
|
> :global(.react-tabs__tab-panel) {
|
|
overflow-y: auto;
|
|
}
|
|
:global(.react-tabs__tab--selected) {
|
|
background-color: #00000022;
|
|
color: #ffffff;
|
|
}
|
|
:global(.react-tabs__tab:focus:after) {
|
|
background-color: #00000044;
|
|
}
|
|
}
|
|
|
|
.dashboard {
|
|
margin: 16px;
|
|
pre {
|
|
user-select: text;
|
|
}
|
|
}
|