-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: praveenjuge <[email protected]>
- Loading branch information
praveenjuge
committed
Jan 9, 2022
1 parent
b62dd8a
commit 827159e
Showing
7 changed files
with
63 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
wrapper: "p-4 grid place-items-center" | ||
forms: true | ||
--- | ||
<div class="inline-flex items-center space-x-1.5"> | ||
<input id="basic" type="checkbox" | ||
class="text-blue-600 transition border-gray-300 rounded cursor-pointer focus:border-blue-600 focus:ring-blue-600 disabled:cursor-not-allowed disabled:bg-gray-200 disabled:opacity-75"> | ||
<label for="basic" class="text-sm text-gray-500 truncate cursor-pointer">Are you ready?</label> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
wrapper: "p-4 grid place-items-center" | ||
forms: true | ||
--- | ||
<div class="inline-flex items-center space-x-1.5"> | ||
<input id="disabled" type="checkbox" disabled | ||
class="text-blue-600 transition border-gray-300 rounded cursor-pointer focus:border-blue-600 focus:ring-blue-600 disabled:cursor-not-allowed disabled:bg-gray-200 disabled:opacity-75"> | ||
<label for="disabled" class="text-sm text-gray-500 truncate cursor-pointer">Are you ready?</label> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
wrapper: "p-4 grid place-items-center" | ||
forms: true | ||
--- | ||
<div class="space-y-1"> | ||
<div class="inline-flex items-center space-x-1.5"> | ||
<input id="error" type="checkbox" checked | ||
class="text-blue-600 transition border-gray-300 rounded cursor-pointer focus:border-blue-600 focus:ring-blue-600 disabled:cursor-not-allowed disabled:bg-gray-200 disabled:opacity-75"> | ||
<label for="error" class="text-sm text-gray-500 truncate cursor-pointer">Are you ready?</label> | ||
</div> | ||
<p class="text-xs text-red-600">I don't think you are ready.</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters