font- size 수정

This commit is contained in:
focp212@naver.com
2025-10-31 16:46:32 +09:00
parent eb54cb8472
commit 516b2d1382
3 changed files with 10 additions and 2 deletions

View File

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

View File

@@ -91,18 +91,22 @@ export const FilterCalendarMonth = ({
<span
className={ `keyword-tag ${(filterMonthOptionsBtn === FilterMonthOptions.Month1)? 'active': ''}` }
onClick={ () => setFilterMonth(FilterMonthOptions.Month1) }
style={{ fontSize: 'var(--fs-13)' }}
>{t('filter.periods.currentMonth')}</span>
<span
className={ `keyword-tag ${(filterMonthOptionsBtn === FilterMonthOptions.Month2)? 'active': ''}` }
onClick={ () => setFilterMonth(FilterMonthOptions.Month2) }
style={{ fontSize: 'var(--fs-13)' }}
>{t('filter.periods.2months')}</span>
<span
className={ `keyword-tag ${(filterMonthOptionsBtn === FilterMonthOptions.Month3)? 'active': ''}` }
onClick={ () => setFilterMonth(FilterMonthOptions.Month3) }
style={{ fontSize: 'var(--fs-13)' }}
>{t('filter.periods.3months')}</span>
<span
className={ `keyword-tag ${(filterMonthOptionsBtn === FilterMonthOptions.Input)? 'active': ''}` }
onClick={ () => setFilterMonth(FilterMonthOptions.Input) }
style={{ fontSize: 'var(--fs-13)' }}
>{t('filter.periods.custom')}</span>
</div>
<div className="range-row">

View File

@@ -114,18 +114,22 @@ export const FilterCalendar = ({
<span
className={ `keyword-tag ${(filterDateOptionsBtn === FilterDateOptions.Today)? 'active': ''}` }
onClick={ () => setFilterDate(FilterDateOptions.Today) }
style={{ fontSize: 'var(--fs-13)' }}
>{t('filter.periods.today')}</span>
<span
className={ `keyword-tag ${(filterDateOptionsBtn === FilterDateOptions.Week)? 'active': ''}` }
style={{ fontSize: 'var(--fs-13)' }}
onClick={ () => setFilterDate(FilterDateOptions.Week) }
>{t('filter.periods.week')}</span>
<span
className={ `keyword-tag ${(filterDateOptionsBtn === FilterDateOptions.Month)? 'active': ''}` }
onClick={ () => setFilterDate(FilterDateOptions.Month) }
style={{ fontSize: 'var(--fs-13)' }}
>{t('filter.periods.1month')}</span>
<span
className={ `keyword-tag ${(filterDateOptionsBtn === FilterDateOptions.Input)? 'active': ''}` }
onClick={ () => setFilterDate(FilterDateOptions.Input) }
style={{ fontSize: 'var(--fs-13)' }}
>{t('filter.periods.custom')}</span>
</div>
<div className="range-row">