height 추가

This commit is contained in:
focp212@naver.com
2025-11-24 10:19:17 +09:00
parent 29fe1719c9
commit 8cbd76a58d

View File

@@ -24,7 +24,8 @@ export const FilterButtonGroups = ({
style={{ style={{
width: `calc((100% - ${onwRowMaxBtn === 2? '10px': '30px'}) / ${onwRowMaxBtn})`, width: `calc((100% - ${onwRowMaxBtn === 2? '10px': '30px'}) / ${onwRowMaxBtn})`,
wordBreak: 'break-all', wordBreak: 'break-all',
fontSize: 'var(--fs-13)' fontSize: 'var(--fs-13)',
height: 'auto'
}} }}
onClick={ () => setter(btnGroups[i]?.value || '') } onClick={ () => setter(btnGroups[i]?.value || '') }
>{ btnGroups[i]?.name }</span> >{ btnGroups[i]?.name }</span>
@@ -49,7 +50,8 @@ export const FilterButtonGroups = ({
visibility: 'hidden', visibility: 'hidden',
width: `calc((100% - ${onwRowMaxBtn === 2? '10px': '30px'}) / ${onwRowMaxBtn})`, width: `calc((100% - ${onwRowMaxBtn === 2? '10px': '30px'}) / ${onwRowMaxBtn})`,
wordBreak: 'break-all', wordBreak: 'break-all',
fontSize: 'var(--fs-13)' fontSize: 'var(--fs-13)',
height: 'auto'
}} }}
></span> ></span>
); );