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 6412e9d commit a81f878Copy full SHA for a81f878
src/components/AsideHeader/components/FirstPanel.tsx
@@ -39,13 +39,12 @@ export const FirstPanel = React.forwardRef<HTMLDivElement>((_props, ref) => {
39
<React.Fragment>
40
<div className={b('aside', className)} style={{width: size}} data-qa={qa}>
41
<div className={b('aside-popup-anchor')} ref={asideRef} />
42
-
+ {customBackground && (
43
+ <div className={b('aside-custom-background', customBackgroundClassName)}>
44
+ {customBackground}
45
+ </div>
46
+ )}
47
<div className={b('aside-content', {['with-decoration']: headerDecoration})}>
- {customBackground && (
- <div className={b('aside-custom-background', customBackgroundClassName)}>
- {customBackground}
- </div>
48
- )}
49
<Header />
50
{visibleMenuItems?.length ? (
51
<CompositeBar
0 commit comments