fix frame style panel (#2851)
Opacity slider was squished when frame tool was selected. I think it's because this PR #2847 got rid of the tlui-style-panel div. Putting it back seems to fix it. ### Change Type - [x] `patch` — Bug fix ### Release Notes - Fixes an issue with the opacity slider getting squished. --------- Co-authored-by: Steve Ruiz <steveruizok@gmail.com>
This commit is contained in:
parent
212eb88480
commit
c039d44f72
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ export const DefaultStylePanel = memo(function DefaultStylePanel({
|
|||
|
||||
return (
|
||||
<div
|
||||
className={classNames('', { 'tlui-style-panel__wrapper': !isMobile })}
|
||||
className={classNames('tlui-style-panel', { 'tlui-style-panel__wrapper': !isMobile })}
|
||||
data-ismobile={isMobile}
|
||||
onPointerLeave={handlePointerOut}
|
||||
>
|
||||
|
|
Loading…
Reference in a new issue