浏览代码

fix: archived chats modal styling

Timothy J. Baek 1 年之前
父节点
当前提交
bfdefbf6e7
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/lib/components/layout/Sidebar/ArchivedChatsModal.svelte

+ 2 - 2
src/lib/components/layout/Sidebar/ArchivedChatsModal.svelte

@@ -75,7 +75,7 @@
 								>
 									<tr>
 										<th scope="col" class="px-3 py-2"> {$i18n.t('Name')} </th>
-										<th scope="col" class="px-3 py-2"> {$i18n.t('Created At')} </th>
+										<th scope="col" class="px-3 py-2 hidden md:flex"> {$i18n.t('Created At')} </th>
 										<th scope="col" class="px-3 py-2 text-right" />
 									</tr>
 								</thead>
@@ -93,7 +93,7 @@
 												</a>
 											</td>
 
-											<td class=" px-3 py-1">
+											<td class=" px-3 py-1 hidden md:flex">
 												{dayjs(chat.created_at * 1000).format($i18n.t('MMMM DD, YYYY HH:mm'))}
 											</td>