25 lines
440 B
CSS
25 lines
440 B
CSS
.actions-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
width: 250px;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.actions-preview {
|
|
height: 100%;
|
|
width: 40%;
|
|
overflow: hidden;
|
|
padding: 10px;
|
|
}
|
|
|
|
.actions-preview div {
|
|
white-space: pre;
|
|
overflow: auto;
|
|
font-size: 17px;
|
|
height: 100%;
|
|
}
|