mirror of https://github.com/portainer/portainer
41 lines
555 B
CSS
41 lines
555 B
CSS
.root {
|
|
position: fixed;
|
|
background: #000;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
z-index: 1000;
|
|
height: 495px;
|
|
}
|
|
|
|
.root.minimized {
|
|
height: 35px;
|
|
}
|
|
|
|
.header {
|
|
height: 35px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
color: #424242;
|
|
background: rgb(245, 245, 245);
|
|
border-top: 1px solid rgb(190, 190, 190);
|
|
|
|
padding: 0 30px;
|
|
}
|
|
|
|
.title {
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.actions button {
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
|
|
.terminal-container .loading-message {
|
|
position: fixed;
|
|
color: #fff;
|
|
}
|