mirror of
https://github.com/CopterExpress/clever-show.git
synced 2026-05-26 15:13:26 +00:00
51 lines
691 B
CSS
51 lines
691 B
CSS
html, body, .my-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html {
|
|
height: calc(100% - 56px);
|
|
}
|
|
|
|
.my-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
}
|
|
|
|
.table-container {
|
|
height: calc(100% - 40px);
|
|
width: calc(70% - 40px);
|
|
padding: 20px;
|
|
}
|
|
|
|
.button {
|
|
margin: 10px;
|
|
}
|
|
|
|
.command-container {
|
|
height: 100%;
|
|
width: 30%;
|
|
}
|
|
|
|
.action-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
padding: 0 0 15px 20px;
|
|
}
|
|
|
|
.action-container .my-label {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.action-container .btn-group {
|
|
padding-top: 20px;
|
|
width: 100%;
|
|
}
|
|
|
|
.btn-group button {
|
|
width: 100%;
|
|
} |