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

53 lines
836 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;
width: 100%;
2024-07-07 23:30:48 -05:00
}
2024-07-08 17:31:07 -05:00
2024-07-08 22:14:21 -05:00
.devtools form {
label {
font-weight: bold;
:first-child {
margin-right: 4px;
}
}
input, select, option {
background-color: #333333;
color: #ffffff;
}
}
2024-07-08 17:31:07 -05:00
.devtools > :global(.react-tabs) {
display: flex;
flex-direction: column;
height: 100%;
2024-07-08 22:14:21 -05:00
> :global(.react-tabs__tab-list) {
margin-bottom: 0;
}
2024-07-08 17:31:07 -05:00
> :global(.react-tabs__tab-panel) {
overflow-y: auto;
}
2024-07-08 22:14:21 -05:00
:global(.react-tabs__tab--selected) {
background-color: #00000022;
color: #ffffff;
}
:global(.react-tabs__tab:focus:after) {
background-color: #00000044;
}
}
.dashboard {
margin: 16px;
2024-07-11 17:16:37 -05:00
pre {
user-select: text;
}
2024-07-08 22:14:21 -05:00
}