File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -76,14 +76,14 @@ $animation_speed: .3s !default;
76
76
}
77
77
78
78
> .ui-resizable-ne {
79
- @include vendor (transform , translate ( 0 , 10 px ) rotate (45deg ));
79
+ @include vendor (transform , rotate (45deg ));
80
80
}
81
81
> .ui-resizable-sw {
82
82
@include vendor (transform , rotate (45deg ));
83
83
}
84
84
85
85
> .ui-resizable-nw {
86
- @include vendor (transform , translate ( 0 , 10 px ) rotate (-45deg ));
86
+ @include vendor (transform , rotate (-45deg ));
87
87
}
88
88
> .ui-resizable-se {
89
89
@include vendor (transform , rotate (-45deg ));
Original file line number Diff line number Diff line change @@ -1615,10 +1615,10 @@ export class GridStack {
1615
1615
// resize handles offset (to match margin)
1616
1616
Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-n` , `top: ${ top } ;` ) ;
1617
1617
Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-s` , `bottom: ${ bottom } ` ) ;
1618
- Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-ne` , `right: ${ right } ` ) ;
1618
+ Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-ne` , `right: ${ right } ; top: ${ top } ` ) ;
1619
1619
Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-e` , `right: ${ right } ` ) ;
1620
1620
Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-se` , `right: ${ right } ; bottom: ${ bottom } ` ) ;
1621
- Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-nw` , `left: ${ left } ` ) ;
1621
+ Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-nw` , `left: ${ left } ; top: ${ top } ` ) ;
1622
1622
Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-w` , `left: ${ left } ` ) ;
1623
1623
Utils . addCSSRule ( this . _styles , `${ prefix } > .ui-resizable-sw` , `left: ${ left } ; bottom: ${ bottom } ` ) ;
1624
1624
}
You can’t perform that action at this time.
0 commit comments