Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Upgrade Tailwind to 2.0 #5

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,346 changes: 804 additions & 542 deletions assets/styles/tailwind.css

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
class="w-full relative flex justify-between lg:w-auto lg:static lg:block lg:justify-start"
>
<a
class="text-gray-800 text-sm font-bold leading-relaxed inline-block mr-4 py-2 whitespace-no-wrap uppercase"
class="text-gray-800 text-sm font-bold leading-relaxed inline-block mr-4 py-2 whitespace-nowrap uppercase"
href="./index.html"
>Notus JS</a
><button
Expand Down Expand Up @@ -88,71 +88,71 @@
id="demo-pages-dropdown"
>
<span
class="text-sm pt-2 pb-0 px-4 font-bold block w-full whitespace-no-wrap bg-transparent text-gray-500"
class="text-sm pt-2 pb-0 px-4 font-bold block w-full whitespace-nowrap bg-transparent text-gray-500"
>
Admin Layout
</span>
<a
href="./pages/admin/dashboard.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-no-wrap bg-transparent text-gray-800"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-gray-800"
>
Dashboard
</a>
<a
href="./pages/admin/settings.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-no-wrap bg-transparent text-gray-800"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-gray-800"
>
Settings
</a>
<a
href="./pages/admin/tables.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-no-wrap bg-transparent text-gray-800"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-gray-800"
>
Tables
</a>
<a
href="./pages/admin/maps.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-no-wrap bg-transparent text-gray-800"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-gray-800"
>
Maps
</a>
<div
class="h-0 mx-4 my-2 border border-solid border-gray-200"
></div>
<span
class="text-sm pt-2 pb-0 px-4 font-bold block w-full whitespace-no-wrap bg-transparent text-gray-500"
class="text-sm pt-2 pb-0 px-4 font-bold block w-full whitespace-nowrap bg-transparent text-gray-500"
>
Auth Layout
</span>
<a
href="./pages/auth/#.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-no-wrap bg-transparent text-gray-800"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-gray-800"
>
Login
</a>
<a
href="./pages/auth/register.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-no-wrap bg-transparent text-gray-800"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-gray-800"
>
Register
</a>
<div
class="h-0 mx-4 my-2 border border-solid border-gray-200"
></div>
<span
class="text-sm pt-2 pb-0 px-4 font-bold block w-full whitespace-no-wrap bg-transparent text-gray-500"
class="text-sm pt-2 pb-0 px-4 font-bold block w-full whitespace-nowrap bg-transparent text-gray-500"
>
No Layout
</span>
<a
href="./pages/landing.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-no-wrap bg-transparent text-gray-800"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-gray-800"
>
Lading
</a>
<a
href="./pages/profile.html"
class="text-sm py-2 px-4 font-normal block w-full whitespace-no-wrap bg-transparent text-gray-800"
class="text-sm py-2 px-4 font-normal block w-full whitespace-nowrap bg-transparent text-gray-800"
>
Profile
</a>
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@
},
"dependencies": {
"@fortawesome/fontawesome-free": "5.14.0",
"@tailwindcss/custom-forms": "0.2.1",
"@tailwindcss/forms": "^0.2.1",
"autoprefixer": "^10.1.0",
"browser-sync": "2.26.12",
"tailwindcss": "1.8.10"
"postcss": "^8.2.1",
"tailwindcss": "^2.0.2"
}
}
Loading