style: display KRW price prominently, USD smaller

- KRW: primary green color, text-lg, bold
- USD: muted gray, text-xs

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
kappa
2026-01-30 07:41:36 +09:00
parent f3dd6c8d5a
commit 05b8cf5e3a

View File

@@ -263,8 +263,8 @@
<td class="px-4 py-3 text-center text-terminal-muted hidden sm:table-cell" x-text="inst.storage_gb + 'GB'"></td> <td class="px-4 py-3 text-center text-terminal-muted hidden sm:table-cell" x-text="inst.storage_gb + 'GB'"></td>
<td class="px-4 py-3 text-center text-terminal-muted hidden md:table-cell" x-text="inst.transfer_tb ? inst.transfer_tb + 'TB' : '-'"></td> <td class="px-4 py-3 text-center text-terminal-muted hidden md:table-cell" x-text="inst.transfer_tb ? inst.transfer_tb + 'TB' : '-'"></td>
<td class="px-4 py-3 text-right"> <td class="px-4 py-3 text-right">
<span class="text-white font-bold" x-text="'$' + inst.pricing?.monthly_price?.toFixed(0)"></span> <span class="text-primary font-bold text-lg" x-text="'' + (inst.pricing?.monthly_price_krw || 0).toLocaleString()"></span>
<span class="text-terminal-muted text-xs block" x-text="'' + (inst.pricing?.monthly_price_krw || 0).toLocaleString()"></span> <span class="text-terminal-muted text-xs block" x-text="'$' + inst.pricing?.monthly_price?.toFixed(2)"></span>
</td> </td>
</tr> </tr>
</template> </template>