바텀시트 필터 글씨 크기 미세 조정

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
joungmin
2026-03-12 20:15:59 +09:00
parent 177532e6e7
commit 18776b9b4b

View File

@@ -78,14 +78,14 @@ export default function FilterSheet({ open, onClose, title, options, value, onCh
!value ? "text-brand-600 dark:text-brand-400 font-medium bg-brand-50/50 dark:bg-brand-900/20" : "text-gray-700 dark:text-gray-300" !value ? "text-brand-600 dark:text-brand-400 font-medium bg-brand-50/50 dark:bg-brand-900/20" : "text-gray-700 dark:text-gray-300"
}`} }`}
> >
<span></span> <span className="text-[15px]"></span>
{!value && <Icon name="check" size={18} className="text-brand-500" />} {!value && <Icon name="check" size={18} className="text-brand-500" />}
</button> </button>
{groups.map((group) => ( {groups.map((group) => (
<div key={group}> <div key={group}>
{group && ( {group && (
<div className="px-4 py-2 text-[11px] font-semibold text-gray-400 dark:text-gray-500 uppercase tracking-wider bg-gray-50 dark:bg-gray-800/50 sticky top-0"> <div className="px-4 py-2.5 text-xs font-semibold text-gray-400 dark:text-gray-500 tracking-wider bg-gray-50 dark:bg-gray-800/50 sticky top-0">
{group} {group}
</div> </div>
)} )}
@@ -99,7 +99,7 @@ export default function FilterSheet({ open, onClose, title, options, value, onCh
: "text-gray-700 dark:text-gray-300" : "text-gray-700 dark:text-gray-300"
}`} }`}
> >
<span className="text-sm">{opt.label}</span> <span className="text-[15px]">{opt.label}</span>
{value === opt.value && <Icon name="check" size={18} className="text-brand-500" />} {value === opt.value && <Icon name="check" size={18} className="text-brand-500" />}
</button> </button>
))} ))}