Merge commit 'ebba1a245ffc93ec69bff31288b9f169cda38486' into feature/20251211-cl

This commit is contained in:
clkim
2025-12-15 14:36:48 +09:00

View File

@@ -630,7 +630,7 @@ onMounted(async () => {
<table>
<thead>
<tr>
<th class="!border-l-[0]">
<th class="w-auto !border-l-[0]">
{{ tm('Coupon_Item_Name') }}
</th>
<th
@@ -639,7 +639,7 @@ onMounted(async () => {
>
{{ tm('Coupon_Item_RegistDate') }}
</th>
<th class="w-[90px] md:w-[180px]">
<th class="w-[1%] whitespace-nowrap">
{{ tm('Coupon_Item_Status') }}
</th>
</tr>
@@ -664,6 +664,7 @@ onMounted(async () => {
>
<tr>
<td
class="w-auto"
:class="
couponIdx === couponList.length - 1
? '!border-l-[0] !border-b-[0]'
@@ -675,7 +676,9 @@ onMounted(async () => {
<td
v-if="breakpoints.isMd || breakpoints.isDesktop"
:class="
couponIdx === couponList.length - 1 ? '!border-b-[0]' : ''
couponIdx === couponList.length - 1
? 'w-[260px] !border-b-[0]'
: 'w-[260px]'
"
>
<p>
@@ -686,7 +689,9 @@ onMounted(async () => {
</td>
<td
:class="
couponIdx === couponList.length - 1 ? '!border-b-[0]' : ''
couponIdx === couponList.length - 1
? '!px-[16px] md:!px-[20px] w-[1%] whitespace-nowrap !border-b-[0]'
: '!px-[16px] md:!px-[20px] w-[1%] whitespace-nowrap'
"
>
<template
@@ -817,7 +822,7 @@ onMounted(async () => {
/* Table Style */
table {
@apply w-full h-auto border-collapse border-spacing-0 table-fixed;
@apply w-full h-auto border-collapse border-spacing-0 table-auto;
}
table th {
@apply py-[8px] px-[12px] border border-[#D9D9D9] border-t-[0] border-r-[0] bg-[#FAFAFA] text-[#1F1F1F] text-[14px] font-bold leading-[24px] tracking-[-0.42px]