"macapp/src/preload.ts" did not exist on "ad4ffdf754e4e9bc73d3a92c2192a02704d9cbf3"
Commit 8163902a authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: styling

parent e36be757
...@@ -69,9 +69,13 @@ ...@@ -69,9 +69,13 @@
<tbody> <tbody>
{#each memories as memory} {#each memories as memory}
<tr class="border-b dark:border-gray-800 items-center"> <tr class="border-b dark:border-gray-800 items-center">
<td class="px-3 py-1"> {memory.content} </td> <td class="px-3 py-1">
<div class="line-clamp-1">
{memory.content}
</div>
</td>
<td class=" px-3 py-1 hidden md:flex h-[2.5rem]"> <td class=" px-3 py-1 hidden md:flex h-[2.5rem]">
<div class="my-auto"> <div class="my-auto whitespace-nowrap">
{dayjs(memory.created_at * 1000).format($i18n.t('MMMM DD, YYYY'))} {dayjs(memory.created_at * 1000).format($i18n.t('MMMM DD, YYYY'))}
</div> </div>
</td> </td>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment