UNPKG
@ovine/craft
Version:
latest (0.1.4)
0.1.4
0.1.4-alpha.1
0.1.4-alpha.0
0.1.3
0.1.3-alpha.2
0.1.3-alpha.1
0.1.0
0.1.0-alpha.2
0.1.0-alpha.1
0.1.0-alpha.0
0.0.10
0.0.9
Ovine json editor.
github.com/CareyToboo/ovine
CareyToboo/ovine
@ovine/craft
/
src
/
components
/
preview
/
styled.js
21 lines
(17 loc)
•
319 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import
styled
from
'styled-components'
export
const
StyledPreview
=
styled.div`
position:
relative;
flex:
1
;
overflow:
hidden;
/**
*
某些元素影响预览,禁用事件
*/
.preview-panel
{
padding:
10px;
height:
100
%;
overflow:
auto;
input
{
pointer-events:
none;
} }
`