fix: 예정 배지 세로 중앙 정렬

- items-start → items-center로 변경

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
caadiq 2026-02-03 18:25:36 +09:00
parent 277c6a79c9
commit 47cd93173c

View file

@ -14,7 +14,7 @@ function VideoInfo({ schedule, isShorts, isScheduled = false }) {
return ( return (
<div className={`bg-gradient-to-br from-gray-100 to-gray-200/80 rounded-2xl p-6 ${isShorts ? 'flex-1' : ''}`}> <div className={`bg-gradient-to-br from-gray-100 to-gray-200/80 rounded-2xl p-6 ${isShorts ? 'flex-1' : ''}`}>
{/* 제목 */} {/* 제목 */}
<div className="flex items-start gap-3 mb-4"> <div className="flex items-center gap-3 mb-4">
<h1 className={`font-bold text-gray-900 leading-relaxed ${isShorts || isScheduled ? 'text-lg' : 'text-xl'}`}> <h1 className={`font-bold text-gray-900 leading-relaxed ${isShorts || isScheduled ? 'text-lg' : 'text-xl'}`}>
{decodeHtmlEntities(schedule.title)} {decodeHtmlEntities(schedule.title)}
</h1> </h1>