Just appreciation for this project. #6
figuerom16
started this conversation in
General
Replies: 1 comment
-
|
Hi! Thanks for your kind message. It means a lot. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This is the 5th CSS framework that I've used. Tailwind -> Skeleton(Svelte) -> PicoCSS -> BulmaCSS -> muCSS. It's been headaches all the way down when it comes to customization and language lockin.
Tailwind and Skeleton were issues because of build steps. BulmaCSS was ok, but tough to customize and can become class heavy and still end up writing a lot of CSS. PicoCSS was a little too stripped down and had weird classless behavior that I would have been happier not touching.
muCSS finally hit the sweet spot for me. The best example I can give why it's so good is that when I need to do something non-standard. I can simply look under the css folder in the git and see a nice clean layout of any css component.
For example I wanted to do something non-standard and do column style table (I know not recommended). Instead of scrolling through a long css file or trying to figure out applied styles through the inspector; all I had to do what look at https://github.com/Digicreon/muCSS/blob/main/css/mu.component.table.css
Then matched my class to it:
No magic just nice CSS that doesn't clash all the way down with very little effort and time. So thank you!
Beta Was this translation helpful? Give feedback.
All reactions