We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove all Tailwind CSS dependencies and complete the transition to a fully self-contained, class-based Numix UI framework.
Numix UI currently depends on Tailwind CSS for:
flex
grid
gap-*
mb-4
p-6
text-center
text-gray-800
md:grid-cols-2
This limits Numix UI from being a truly independent, portable CSS library.
.n-*
numix-ui.css
.n-flex
.n-mb-4
.n-grid-md-2
.n-flex-md-col
<script src="https://cdn.tailwindcss.com">
/* Example spacing and layout utilities */ .n-flex { display: flex; } .n-grid { display: grid; } .n-gap-4 { gap: 1rem; } .n-mb-4 { margin-bottom: 1rem; } .n-p-4 { padding: 1rem; } .n-text-center { text-align: center; } .n-w-full { width: 100%; } /* Responsive */ @media (min-width: 768px) { .n-grid-md-2 { grid-template-columns: repeat(2, 1fr); } }
.n-
.n-btn
.n-form-control
numix-utilities.css
build-utils.js
The text was updated successfully, but these errors were encountered:
No branches or pull requests
🎯 Goal
Remove all Tailwind CSS dependencies and complete the transition to a fully self-contained, class-based Numix UI framework.
📌 Current Situation
Numix UI currently depends on Tailwind CSS for:
flex
,grid
,gap-*
)mb-4
,p-6
, etc.)text-center
,text-gray-800
, etc.)md:grid-cols-2
)This limits Numix UI from being a truly independent, portable CSS library.
✅ Objective
.n-*
equivalents🛠️ Tasks
numix-ui.css
(e.g.,.n-flex
,.n-mb-4
, etc.).n-*
.n-grid-md-2
,.n-flex-md-col
, etc., as needed<script src="https://cdn.tailwindcss.com">
from the HTML🧰 Suggested Utility Additions
💡 Notes
.n-
.n-btn
,.n-form-control
, etc.)numix-utilities.css
for better organization and maintainability✅ Benefits
.n-*
🧩 Optional Enhancements
build-utils.js
) to auto-generate spacing/layout classesThe text was updated successfully, but these errors were encountered: