Skip to content

Commit

Permalink
fix(nx-plugin): remove extra class in Tailwind/trpc example (#772)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajitzero authored Dec 4, 2023
1 parent 6012c8f commit b5ee6d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -356,8 +356,8 @@ import { Note } from '../../note';
<div class="trpc-container">
<h2 class="trpc-heading">Leave a note</h2>
<p class="trpc-description">
This is an example of how to you can use tRPC to superpower you
client server interaction.
This is an example of how you can use tRPC to superpower your
client-server interaction.
</p>
</div>
<form class="trpc-form" #f="ngForm" (ngSubmit)="addNote(f)">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ import { Note } from '../../note';
<p
class="max-w-[85%] leading-normal sm:text-lg sm:leading-7"
>
This is an example of how to you can use tRPC to superpower you
client server interaction.
This is an example of how you can use tRPC to superpower your
client-server interaction.
</p>
</div>
<form
Expand Down Expand Up @@ -96,7 +96,7 @@ import { Note } from '../../note';
<p class="text-sm text-zinc-400">{{ note.createdAt | date }}</p>
<button
[attr.data-testid]="'removeNoteAtIndexBtn' + i"
class="text-xs inline-flex items-center justify-center text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none ring-offset-background hover:bg-zinc-100 hover:text-zinc-950 h-6 w-6 rounded-md"
class="inline-flex items-center justify-center text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none ring-offset-background hover:bg-zinc-100 hover:text-zinc-950 h-6 w-6 rounded-md"
(click)="removeNote(note.id)"
>
x
Expand Down

0 comments on commit b5ee6d5

Please sign in to comment.