-
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: vertical promise tabs * feat: cherry pick * feat: resolved commit added blue color for tab Co-authored-by: anshul-pinto0410 <[email protected]> Co-authored-by: Pritam Sinha <[email protected]>
- Loading branch information
1 parent
be40531
commit 853d9a4
Showing
5 changed files
with
81 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,49 @@ | ||
--- | ||
id: vertical-promise-tabs | ||
title: Vertical Promise Tabs | ||
sidebar_label: Vertical Promise Tabs | ||
--- | ||
|
||
``` html live | ||
<> | ||
<div class="lil-flex"> | ||
<div class="lil-w-1/3"> | ||
<ul class="lil-vertical-promise-tabs"> | ||
<li class="lil-promise-tab"> | ||
<a class="lil-flex lil-items-center"> | ||
<div class="lil-w-1/5"> | ||
<img src="https://assets1.cleartax-cdn.com/cleartax/images/1602839421_security_database_icon.png"/> | ||
</div> | ||
<div class="lil-w-4/5"> | ||
<h6 class="sm:lil-text-s-20"> Saving for your clients </h6> | ||
</div> | ||
</a> | ||
</li> | ||
<li class="lil-promise-tab lil-promise-tab-active"> | ||
<a class="lil-flex lil-items-center"> | ||
<div class="lil-w-1/5"> | ||
<img src="https://assets1.cleartax-cdn.com/cleartax/images/1602839421_security_database_icon.png"/> | ||
</div> | ||
<div class="lil-w-4/5"> | ||
<h6 class="sm:lil-text-s-20"> Saving for your clients </h6> | ||
</div> | ||
</a> | ||
</li> | ||
<li class="lil-promise-tab"> | ||
<a class="lil-flex lil-items-center"> | ||
<div class="lil-w-1/5"> | ||
<img src="https://assets1.cleartax-cdn.com/cleartax/images/1602839421_security_database_icon.png"/> | ||
</div> | ||
<div class="lil-w-4/5"> | ||
<h6 class="sm:lil-text-s-20"> Saving for your clients </h6> | ||
</div> | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="lil-w-2/3 lil-items-center lil-flex lil-justify-center"> | ||
<h1>Content</h1> | ||
</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,21 @@ | ||
.lil-vertical-promise-tabs{ | ||
@apply lil-list-none lil-overflow-x-auto; | ||
} | ||
.lil-vertical-promise-tabs > .lil-promise-tab{ | ||
min-height:100px; | ||
@apply lil-bg-grey-100 lil-opacity-50 lil-p-5 lil-outline-none lil-flex lil-whitespace-normal lil-rounded-xl lil-cursor-pointer; | ||
} | ||
|
||
.lil-vertical-promise-tabs .lil-promise-tab-active{ | ||
@apply lil-opacity-100 lil-bg-blue-50; | ||
} | ||
|
||
@screen sm { | ||
.lil-vertical-promise-tabs { | ||
@apply lil-flex lil-overflow-x-auto; | ||
} | ||
|
||
.lil-vertical-promise-tabs > .lil-promise-tab{ | ||
min-width: 300px; | ||
} | ||
} |
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