mirror of
https://github.com/SpikeHD/MojoFrontend.git
synced 2024-11-16 15:31:11 +00:00
34 lines
533 B
CSS
34 lines
533 B
CSS
.container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.toolset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#panel {
|
|
margin-left: 3em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-right: 3em;
|
|
min-width: 30em;
|
|
}
|
|
|
|
.commandGroup {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
hr.solid {
|
|
border-top: 1px solid #bbb;
|
|
margin-left: 1px;
|
|
margin-right: 1px;
|
|
margin-top: -5px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|