File tree 2 files changed +10
-2
lines changed
client/packages/lowcoder/src
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -51,8 +51,10 @@ const textStyle = css`
51
51
export const CodeEditorTooltipContainer = styled . div `
52
52
// tooltip common
53
53
.cm-tooltip {
54
- z-index : ${ Layers . codeEditorTooltip } ;
55
54
border : 1px solid # d7d9e0 ;
55
+ padding : 5px !important ;
56
+ margin-top : 5px !important ;
57
+ height : 120px ;
56
58
}
57
59
// make sure antd popover in the code editor available
58
60
.ant-popover {
Original file line number Diff line number Diff line change @@ -143,7 +143,13 @@ export const BottomContent = () => {
143
143
</ Left >
144
144
< Drag />
145
145
< Right >
146
- < div style = { { width : "100%" , height : "100%" , minWidth : "480px" } } >
146
+ < div style = { {
147
+ width : "100%" ,
148
+ height : "100%" ,
149
+ minWidth : "480px" ,
150
+ display : "flex" ,
151
+ flexDirection : "column" ,
152
+ } } >
147
153
< MetaDataContext . Provider value = { metaData } >
148
154
< CompNameContext . Provider
149
155
value = { editorState . selectedQueryComp ( ) ?. children . name . getView ( ) || "" }
You can’t perform that action at this time.
0 commit comments