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.
2 parents 24c3e8a + a53a869 commit 616c8cfCopy full SHA for 616c8cf
packages/webgal/src/UI/Menu/Options/NormalOption.tsx
@@ -6,7 +6,10 @@ export const NormalOption = (props: any) => {
6
{/* <div className={styles.NormalOption_title_sd}>{props.title}</div> */}
7
{/* <div className={styles.NormalOption_title_bef}>{props.title}</div> */}
8
<div className={styles.NormalOption_title}>{props.title}</div>
9
- <div className={styles.NormalOption_buttonList} style={{ width: props.full ? '100%' : 'auto' }}>
+ <div
10
+ className={styles.NormalOption_buttonList}
11
+ style={{ width: props.full ? '100%' : 'auto', overflow: props.full ? 'hidden' : undefined }}
12
+ >
13
{props.children}
14
</div>
15
0 commit comments