- 코드 정리

- 경고 클래스 수정
- 카드 비율 수정 3:4 > 4:5
This commit is contained in:
2026-02-10 11:30:45 +09:00
parent ddc491dec1
commit 526d310ac9
6 changed files with 263 additions and 116 deletions

View File

@@ -48,6 +48,9 @@
screens: {
'xs': '480px',
},
aspectRatio: {
'card': '4 / 5',
},
},
},
}
@@ -137,7 +140,7 @@
<span class="text-slate-400 dark:text-slate-500 text-xs font-bold uppercase tracking-widest">Total Results</span>
<span id="total-count" class="px-2 py-0.5 rounded bg-primary/10 text-primary text-sm font-bold">0</span>
</div>
<div id="selection-summary" class="hidden flex items-center gap-3 bg-primary/10 px-3 py-1.5 rounded-full border border-primary/20">
<div id="selection-summary" class="hidden items-center gap-3 bg-primary/10 px-3 py-1.5 rounded-full border border-primary/20">
<span class="text-[11px] font-bold text-primary">
<span id="selected-count">0</span>
items
@@ -147,21 +150,21 @@
<div class="flex items-center gap-1 ml-2">
<button onclick="window.exportToExcel()" class="flex items-center gap-1 bg-primary text-white text-[10px] px-2 py-1 rounded-md hover:bg-primary-dark transition-colors">
<span class="material-symbols-outlined !text-[14px]">download</span>
<span class="material-symbols-outlined text-sm">download</span>
Export
</button>
<button onclick="window.resetSelection()" class="flex items-center gap-1 bg-white dark:bg-slate-800 text-slate-500 text-[10px] px-2 py-1 rounded-md border border-slate-200 dark:border-slate-700 hover:bg-slate-50 transition-colors">
<span class="material-symbols-outlined !text-[14px]">restart_alt</span>
<span class="material-symbols-outlined text-sm">restart_alt</span>
Reset
</button>
</div>
</div>
<div class="flex bg-slate-100 dark:bg-slate-800 p-1 rounded-lg">
<button id="view-grid" class="p-1.5 rounded-md bg-white dark:bg-slate-700 shadow-sm text-primary transition-all">
<span class="material-symbols-outlined !text-[20px]">grid_view</span>
<span class="material-symbols-outlined text-xl">grid_view</span>
</button>
<button id="view-table" class="p-1.5 rounded-md text-slate-400 hover:text-slate-600 dark:hover:text-slate-200 transition-all">
<span class="material-symbols-outlined !text-[20px]">format_list_bulleted</span>
<span class="material-symbols-outlined text-xl">format_list_bulleted</span>
</button>
</div>
</div>