-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a sorter based on a TailwindCSS output file
This sorter will use the same definition sequence found in the output file which is what is also used by the official TailwindCSS prettyprint formatter. Co-Authored-By: Francesco Aiello <[email protected]>
- Loading branch information
1 parent
ef8a847
commit 2624861
Showing
6 changed files
with
86 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ | |
/spec/reports/ | ||
/tmp/ | ||
/Gemfile.lock | ||
/test/fixtures/tailwindcss/class_sorting.css |
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,14 @@ | ||
<div class="pt-2 p-4"> | ||
</div> | ||
|
||
<div class="text-gray-700 shadow-md p-3 border-gray-300 ml-4 h-24 flex border-2"> | ||
</div> | ||
|
||
<div class="hover:opacity-75 opacity-50 hover:scale-150 scale-125"> | ||
</div> | ||
|
||
<div class="lg:grid-cols-4 grid sm:grid-cols-3 grid-cols-2"> | ||
</div> | ||
|
||
<div class="p-3 shadow-xl select2-dropdown"> | ||
</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,16 @@ | ||
<div class="p-4 pt-2"> | ||
</div> | ||
|
||
<div | ||
class="ml-4 flex h-24 border-2 border-gray-300 p-3 text-gray-700 shadow-md" | ||
> | ||
</div> | ||
|
||
<div class="scale-125 opacity-50 hover:scale-150 hover:opacity-75"> | ||
</div> | ||
|
||
<div class="grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-4"> | ||
</div> | ||
|
||
<div class="select2-dropdown p-3 shadow-xl"> | ||
</div> |