Skip to content

Commit

Permalink
fixes issue with border opacity by choosing non-deprecated tailwind s…
Browse files Browse the repository at this point in the history
  • Loading branch information
aoberoi committed Jan 27, 2022
1 parent 83fdbc5 commit 44bab22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/index.tsx
Expand Up @@ -17,8 +17,8 @@ export default function Home({ posts }: HomeProps) {
<tbody>
{posts.map((post) => (
<tr key={post.slug}>
<td className="pr-4 py-3 border-b border-opacity-10 text-right opacity-40">{formatInTimeZone(post.date * 1000, 'MMMM do, R', 'UTC')}</td>
<td className="pl-4 py-3 border-b border-opacity-10 text-left">
<td className="pr-4 py-3 border-b border-gray-200/10 text-right opacity-40">{formatInTimeZone(post.date * 1000, 'MMMM do, R', 'UTC')}</td>
<td className="pl-4 py-3 border-b border-gray-200/10 text-left">
<Link href={`/p/${post.slug}`} passHref={true}>
<a className="text-red-700 underline">{post.title}</a>
</Link>
Expand Down

0 comments on commit 44bab22

Please sign in to comment.