Skip to content

Commit

Permalink
fix e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackySoul committed Oct 8, 2024
1 parent 4dfb2f5 commit 3a382cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/vkui/src/components/PanelHeader/PanelHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export const PanelHeader = ({
{!isVKCOM && (
<>
{staticSeparatorVisible && adaptiveSizeX.compact && (
<Separator className={adaptiveSizeX.compact.className} />
<Separator className={adaptiveSizeX.compact.className} padding />
)}
{staticSpacingVisible && adaptiveSizeX.regular && (
<Spacing className={adaptiveSizeX.regular.className} size={16} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ export const SpacingPlayground = (props: ComponentPlaygroundProps) => {
>
{({ size }: SpacingProps) => (
<Div style={{ width: 100 }}>
<Separator />
<Separator padding />
<Spacing size={size} />
<Separator />
<Separator padding />
<Spacing size={size} />
<Spacing size={size} style={{ background: '#b0bfb4' }}>
<Separator />
<Separator padding />
</Spacing>
</Div>
)}
Expand Down

0 comments on commit 3a382cb

Please sign in to comment.