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 3534bdd commit bd21022Copy full SHA for bd21022
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: 'hidden' }}
12
+ >
13
{props.children}
14
</div>
15
0 commit comments