Skip to content

Commit a53a869

Browse files
only effect when option at full mode
1 parent 875e8a5 commit a53a869

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/webgal/src/UI/Menu/Options/NormalOption.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const NormalOption = (props: any) => {
88
<div className={styles.NormalOption_title}>{props.title}</div>
99
<div
1010
className={styles.NormalOption_buttonList}
11-
style={{ width: props.full ? '100%' : 'auto', overflow: 'hidden' }}
11+
style={{ width: props.full ? '100%' : 'auto', overflow: props.full ? 'hidden' : undefined }}
1212
>
1313
{props.children}
1414
</div>

0 commit comments

Comments
 (0)