File tree 1 file changed +10
-3
lines changed
client/packages/lowcoder/src/comps/comps/tableComp/column/columnTypeComps
1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ export const Wrapper = styled.div`
96
96
width: 100%;
97
97
height: 100%;
98
98
}
99
+
99
100
.ant-select {
100
101
height: 100%;
101
102
.ant-select-selector {
@@ -145,6 +146,9 @@ export const Wrapper = styled.div`
145
146
}
146
147
}
147
148
}
149
+ .ant-tag {
150
+ margin-left: 20px;
151
+ }
148
152
.ant-tag svg {
149
153
margin-right: 4px;
150
154
}
@@ -169,6 +173,7 @@ export const DropdownStyled = styled.div`
169
173
` ;
170
174
171
175
export const TagStyled = styled ( Tag ) `
176
+ margin-right: 8px;
172
177
svg {
173
178
margin-right: 4px;
174
179
}
@@ -259,9 +264,11 @@ export const ColumnTagsComp = (function () {
259
264
// The actual eval value is of type number or boolean
260
265
const tagText = String ( tag ) ;
261
266
return (
262
- < TagStyled color = { getTagColor ( tagText , tagOptions ) } icon = { getTagIcon ( tagText , tagOptions ) } key = { index } >
263
- { tagText }
264
- </ TagStyled >
267
+ < div >
268
+ < TagStyled color = { getTagColor ( tagText , tagOptions ) } icon = { getTagIcon ( tagText , tagOptions ) } key = { index } >
269
+ { tagText }
270
+ </ TagStyled >
271
+ </ div >
265
272
) ;
266
273
} ) ;
267
274
return view ;
You can’t perform that action at this time.
0 commit comments