blob: 192b99a128cf232b4a534fcbfc9a475530b5c956 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
.undoStack-outerContainer {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
pointer-events: all;
}
.undoStack-resultContainer {
border-radius: 5px;
}
.undoStack-commandInput {
width: 100%;
}
.undoStack-commandResult,
.undoStack-commandString {
overflow-wrap: break-word;
}
.undoStack-commandsContainer {
flex: 1 1 auto;
overflow-y: scroll;
height: fit-content;
width: 200px;
border-radius: 5px;
padding: 5px;
max-height: 200px;
}
|