File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed
react-spaces/src/components Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 1010 top : 0 ;
1111 right : 0 ;
1212 bottom : 0 ;
13-
14- & :after {
15- content : " " ;
16- display : table ;
17- clear : both ;
18- }
1913 }
2014
2115 & .scrollable {
Original file line number Diff line number Diff line change @@ -264,10 +264,10 @@ class Space extends React.Component<AllProps, IState> {
264264 < div
265265 id = { id }
266266 ref = { this . divElementRef }
267- className = { `spaces-space${ this . props . anchor || '' } ${ this . props . scrollable ? ' scrollable' : '' } ${ className ? ` ${ className } ` : `` } ` }
267+ className = { `spaces-space${ this . props . anchor || '' } ${ this . props . scrollable ? ' scrollable' : '' } ` }
268268 style = { style } >
269269 { resizeRender }
270- < div className = " spaces-space-inner" style = { this . props . style } >
270+ < div className = { ` spaces-space-inner${ className ? ` ${ className } ` : `` } ` } style = { this . props . style } >
271271 < SpaceContext . Provider value = { currentContext } >
272272 < SpaceInfoContext . Provider value = { { width : Math . floor ( this . state . currentWidth ) , height : Math . floor ( this . state . currentHeight ) } } >
273273 { spaceRender }
You can’t perform that action at this time.
0 commit comments