32 lines
595 B
CSS
32 lines
595 B
CSS
.dcmrt-panel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: var(--primary-background-color);
|
|
height: 100%;
|
|
width: 100%;
|
|
padding: 20px;
|
|
}
|
|
|
|
.dcmrt-panel .dcmrt-panel-header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
color: white;
|
|
}
|
|
|
|
.dcmrt-panel .dcmrt-panel-header h3 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.dcmrt-panel .dcmrt-panel-header .cog-icon {
|
|
align-self: flex-end;
|
|
color: var(--default-color);
|
|
cursor: pointer;
|
|
min-height: 23px;
|
|
max-height: 23px;
|
|
}
|
|
|
|
.dcmrt-panel .dcmrt-panel-header .cog-icon:hover {
|
|
color: var(--hover-color);
|
|
}
|