fix(web): fix broken mobile sidebar (in workflows mode) sizing issue by adding flex-1 (#17055)
This commit is contained in:
parent
fc678ef36c
commit
13402529ce
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ export const SidebarContent = (props: {
|
||||||
ref={(el) => {
|
ref={(el) => {
|
||||||
panel = el
|
panel = el
|
||||||
}}
|
}}
|
||||||
classList={{ "flex h-full min-h-0 min-w-0 overflow-hidden": true, "pointer-events-none": !expanded() }}
|
classList={{ "flex-1 flex h-full min-h-0 min-w-0 overflow-hidden": true, "pointer-events-none": !expanded() }}
|
||||||
aria-hidden={!expanded()}
|
aria-hidden={!expanded()}
|
||||||
>
|
>
|
||||||
{props.renderPanel()}
|
{props.renderPanel()}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue