간격 수정
This commit is contained in:
@@ -21,6 +21,11 @@ export const FilterButtonGroups = ({
|
|||||||
<span
|
<span
|
||||||
key={ `key-btngroup-span-${i}` }
|
key={ `key-btngroup-span-${i}` }
|
||||||
className={ `keyword-tag flex-1 ${(activeValue === btnGroups[i]?.value)? 'active': ''}` }
|
className={ `keyword-tag flex-1 ${(activeValue === btnGroups[i]?.value)? 'active': ''}` }
|
||||||
|
style={{
|
||||||
|
width: `calc((100% - ${onwRowMaxBtn === 2? '10px': '30px'}) / ${onwRowMaxBtn})`,
|
||||||
|
wordBreak: 'break-all',
|
||||||
|
fontSize: 'var(--fs-14)'
|
||||||
|
}}
|
||||||
onClick={ () => setter(btnGroups[i]?.value || '') }
|
onClick={ () => setter(btnGroups[i]?.value || '') }
|
||||||
>{ btnGroups[i]?.name }</span>
|
>{ btnGroups[i]?.name }</span>
|
||||||
);
|
);
|
||||||
@@ -40,7 +45,12 @@ export const FilterButtonGroups = ({
|
|||||||
<span
|
<span
|
||||||
key={ `key-btngroup-span-nodata-${i}` }
|
key={ `key-btngroup-span-nodata-${i}` }
|
||||||
className="keyword-tag flex-1"
|
className="keyword-tag flex-1"
|
||||||
style={{ visibility: 'hidden' }}
|
style={{
|
||||||
|
visibility: 'hidden',
|
||||||
|
width: `calc((100% - ${onwRowMaxBtn === 2? '10px': '30px'}) / ${onwRowMaxBtn})`,
|
||||||
|
wordBreak: 'break-all',
|
||||||
|
fontSize: 'var(--fs-14)'
|
||||||
|
}}
|
||||||
></span>
|
></span>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -57,7 +67,10 @@ export const FilterButtonGroups = ({
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className={ `opt-field ${addClassName || ''}` }>
|
<div className={ `opt-field ${addClassName || ''}` }>
|
||||||
<div className="opt-label">{ title }</div>
|
<div
|
||||||
|
className="opt-label"
|
||||||
|
style={{ fontSize: 'var(--fs-14)' }}
|
||||||
|
>{ title }</div>
|
||||||
<div className={ `opt-controls col h36 ${(onwRowMaxBtn === 4)? 'below': ''}` }>
|
<div className={ `opt-controls col h36 ${(onwRowMaxBtn === 4)? 'below': ''}` }>
|
||||||
{ getBtns() }
|
{ getBtns() }
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -82,7 +82,10 @@ export const FilterCalendarMonth = ({
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="opt-field">
|
<div className="opt-field">
|
||||||
<div className="opt-label">{ filterTitle }</div>
|
<div
|
||||||
|
className="opt-label"
|
||||||
|
style={{ fontSize: 'var(--fs-14)' }}
|
||||||
|
>{ filterTitle }</div>
|
||||||
<div className="opt-controls col below h36">
|
<div className="opt-controls col below h36">
|
||||||
<div className="chip-row">
|
<div className="chip-row">
|
||||||
<span
|
<span
|
||||||
|
|||||||
@@ -105,7 +105,10 @@ export const FilterCalendar = ({
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="opt-field">
|
<div className="opt-field">
|
||||||
<div className="opt-label">{ filterTitle }</div>
|
<div
|
||||||
|
className="opt-label"
|
||||||
|
style={{ fontSize: 'var(--fs-14)' }}
|
||||||
|
>{ filterTitle }</div>
|
||||||
<div className="opt-controls col below h36">
|
<div className="opt-controls col below h36">
|
||||||
<div className="chip-row">
|
<div className="chip-row">
|
||||||
<span
|
<span
|
||||||
|
|||||||
@@ -14,7 +14,10 @@ export const FilterInput = ({
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="opt-field">
|
<div className="opt-field">
|
||||||
<div className="opt-label">{ title }</div>
|
<div
|
||||||
|
className="opt-label"
|
||||||
|
style={{ fontSize: 'var(--fs-14)' }}
|
||||||
|
>{ title }</div>
|
||||||
<div className="opt-controls">
|
<div className="opt-controls">
|
||||||
<input
|
<input
|
||||||
className="flex-1"
|
className="flex-1"
|
||||||
|
|||||||
@@ -26,7 +26,10 @@ export const FilterRangeAmount = ({
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="opt-field">
|
<div className="opt-field">
|
||||||
<div className="opt-label">{ filterTitle }</div>
|
<div
|
||||||
|
className="opt-label"
|
||||||
|
style={{ fontSize: 'var(--fs-14)' }}
|
||||||
|
>{ filterTitle }</div>
|
||||||
<div className="opt-controls">
|
<div className="opt-controls">
|
||||||
<div className="input-wrapper ">
|
<div className="input-wrapper ">
|
||||||
<NumericFormat
|
<NumericFormat
|
||||||
|
|||||||
@@ -49,7 +49,10 @@ export const FilterSelectInput = ({
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="opt-field">
|
<div className="opt-field">
|
||||||
<div className="opt-label">{ title }</div>
|
<div
|
||||||
|
className="opt-label"
|
||||||
|
style={{ fontSize: 'var(--fs-14)' }}
|
||||||
|
>{ title }</div>
|
||||||
<div className="opt-controls">
|
<div className="opt-controls">
|
||||||
<select
|
<select
|
||||||
className="w-110"
|
className="w-110"
|
||||||
|
|||||||
@@ -52,7 +52,10 @@ export const FilterSelectMid = ({
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="opt-field">
|
<div className="opt-field">
|
||||||
<div className="opt-label">{ title }</div>
|
<div
|
||||||
|
className="opt-label"
|
||||||
|
style={{ fontSize: 'var(--fs-14)' }}
|
||||||
|
>{ title }</div>
|
||||||
<div className="opt-controls">
|
<div className="opt-controls">
|
||||||
<select
|
<select
|
||||||
className="flex-1"
|
className="flex-1"
|
||||||
|
|||||||
@@ -29,7 +29,10 @@ export const FilterSelect = ({
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="opt-field">
|
<div className="opt-field">
|
||||||
<div className="opt-label">{ title }</div>
|
<div
|
||||||
|
className="opt-label"
|
||||||
|
style={{ fontSize: 'var(--fs-14)' }}
|
||||||
|
>{ title }</div>
|
||||||
<div className="opt-controls">
|
<div className="opt-controls">
|
||||||
<select
|
<select
|
||||||
className="flex-1"
|
className="flex-1"
|
||||||
|
|||||||
@@ -35,7 +35,10 @@ export const SingleDatePicker = ({
|
|||||||
<>
|
<>
|
||||||
{title && (
|
{title && (
|
||||||
<div className="issue-row gap-10">
|
<div className="issue-row gap-10">
|
||||||
<div className="issue-label">{title}</div>
|
<div
|
||||||
|
className="issue-label"
|
||||||
|
style={{ fontSize: 'var(--fs-14)' }}
|
||||||
|
>{ title }</div>
|
||||||
<div className="issue-field">
|
<div className="issue-field">
|
||||||
<div className="input-wrapper date">
|
<div className="input-wrapper date">
|
||||||
<input
|
<input
|
||||||
|
|||||||
Reference in New Issue
Block a user