We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a617074 commit 601aa73Copy full SHA for 601aa73
packages/streamwall-control-ui/src/index.tsx
@@ -602,7 +602,7 @@ export function ControlUI({
602
}
603
604
return (
605
- <Stack flex="1">
+ <Stack flex="1" direction="row" gap={16}>
606
<Stack>
607
<StyledHeader>
608
{role !== 'local' && (
@@ -837,8 +837,9 @@ export function ControlUI({
837
838
const Stack = styled.div`
839
display: flex;
840
- flex-direction: column;
+ flex-direction: ${({ direction }) => direction ?? 'column'};
841
flex: ${({ flex }) => flex};
842
+ ${({ gap }) => gap && `gap: ${gap}px`};
843
${({ scroll }) => scroll && `overflow-y: auto`};
844
${({ minHeight }) => minHeight && `min-height: ${minHeight}px`};
845
`
0 commit comments