aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/ScriptBox.scss
blob: b91a36c1f46bdd7dd39186d638ed99ccb240495f (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
.scriptBox-outerDiv {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    pointer-events: all;
    background-color: rgb(241, 239, 235);
    padding: 10px;
}

.scriptBox-toolbar {
    width: 100%;
}

.scriptBox-textArea {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    resize: none;
    padding: 7px;
}

.scriptBox-button {
    width: 50%
}