fix: [디자인QA] 컨텐츠 영역의 max-width 추가

This commit is contained in:
clkim
2025-11-26 17:50:26 +09:00
parent 97e6ab912a
commit e06ee97764
12 changed files with 31 additions and 29 deletions

View File

@@ -59,28 +59,28 @@ const handleSplideMove = (_splide: SplideType, newIndex: number) => {
:resources-data="getComponentGroup(item, 'foreground')"
/>
<div
class="content-standard max-w-[1024px] mx-auto items-start pt-[48px] md:pt-0"
class="content-standard max-w-[335px] mx-auto items-start pt-[48px] md:max-w-[1024px] md:pt-0"
>
<WidgetsSubTitle
v-if="hasComponentGroup(item, 'category')"
:resources-data="getComponentGroup(item, 'category')"
class="title-xs mb-2 line-clamp-1 text-left md:mb-5"
class="title-xs max-w-[540px] mb-2 line-clamp-1 text-left md:mb-5"
/>
<WidgetsMainTitle
v-if="hasComponentGroup(item, 'mainTitle')"
:resources-data="getComponentGroup(item, 'mainTitle')"
class="title-lg line-clamp-1 text-left"
class="title-lg max-w-[540px] line-clamp-1 text-left"
/>
<WidgetsSubTitle
v-if="hasComponentGroup(item, 'subTitle')"
:resources-data="getComponentGroup(item, 'subTitle')"
tag="p"
class="title-md mt-1 line-clamp-1 text-left"
class="title-md max-w-[540px] mt-1 line-clamp-1 text-left"
/>
<WidgetsDescription
v-if="hasComponentGroup(item, 'description')"
:resources-data="getComponentGroup(item, 'description')"
class="mt-2 text-left md:mt-5"
class="max-w-[540px] mt-2 text-left md:mt-5"
/>
<AtomsVideo
v-if="hasComponentGroup(item, 'video')"