-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat:added tick * feat: added tick mark * feat: resolved comments Co-authored-by: anshul-pinto0410 <[email protected]>
- Loading branch information
1 parent
853d9a4
commit ec7ffc5
Showing
4 changed files
with
39 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
id: tickmark | ||
title: Tick Mark | ||
sidebar_label: Tick Mark | ||
--- | ||
|
||
```html live | ||
<> | ||
<div class="lil-bg-white"> | ||
<div class="lil-tick-wrapper"> | ||
<div class="lil-tick"></div> | ||
</div> | ||
|
||
<div class="lil-tick-wrapper lil-bg-blue-300 lil-border-none"> | ||
<div class="lil-tick lil-border-white"></div> | ||
</div> | ||
|
||
<div class="lil-tick-wrapper lil-bg-green-250 lil-border-none"> | ||
<div class="lil-tick lil-border-white"></div> | ||
</div> | ||
|
||
</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
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 @@ | ||
.lil-tick-wrapper{ | ||
@apply lil-rounded-full lil-w-6 lil-h-6 lil-flex lil-items-center lil-justify-center lil-border-sm lil-border-font-200; | ||
} | ||
|
||
|
||
.lil-tick{ | ||
top: -2px; | ||
@apply lil-relative lil-w-1 lil-h-2 lil-border-b-sm lil-border-r-sm lil-border-font-200 lil-transform lil-rotate-45 lil-inline-block; | ||
} |
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