blob: 111053228367b1f331ef95c65783b37a199d31a1 (
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
|
@import "../../styles/mixins";
.TextEditor{
background: #fff;
min-height: 200px;
border: 1px solid material-color('grey', '300');
padding: 0 10px;
}
.ToolbarEditor{
background: material-color('grey', '50');
border: none;
}
.textPreview{
width: 100%;
resize: none;
height: 305px;
border-width: 1px;
border-style: solid;
border-color: material-color('grey', '300');
border-image: initial;
padding: 5px;
}
|