I just saw their recent update and it’s quite impressive. Not the biggest fan of Tailwind but it definitely seems to make svelte development faster and less painful (not that it’s any more painful than it should be).
Having used tailwind a little bit, I have nothing but praise for it. Effortless copy/pasting of components with confidence, really nice look by default, easy tweaking, absolutely no management or planning required to organize your CSS, and it’s all right there, directly on your html, never anywhere you have to hunt for it. Feels very freeing to just… not think about CSS at all.
And the “clutter” really is fine, modern IDEs with good syntax highlighting, plus a tailwind extension to help complete the class names and clean up accidental duplicates or conflicting properties, and you’re good.
snowe@programming.dev 1 year ago
Could someone explain tailwind and skeleton for me? I’ve heard of tailwind but haven’t ever looked into it
Hexarei@programming.dev 1 year ago
Tailwind is an unrelated project, that’s just used by this one.
Basically, TailwindCSS is a combination of two things:
prefers-color-scheme
set to dark, etc.The main benefits, I find, are mostly:
text-green-500
and you suddenly have green text with a middle-of-the-road luminosity. Need spacing? Use one of the padding or margin utilities, and you’ll have consistent spacing based on a convention.py-4
and you know you get “level 4” padding without having to care what the exact pixel amount is. But! You know it’s the same as everywhere else you’ve donepy-4
. No need to go fiddle with a stylesheet.Tailwind focuses on coupling your styling to your HTML by using tiny, focused, glanceable utility classes (
<div></div>
) rather than by needing to create a ton of potentially-confusing “semantic” classes^[1]^ (<div></div>
).There are tons of classes in it, and I’ve found it to be super useful. Want to center something, horizontally and vertically? Here’s how in Tailwind:
And if you need a one-off specific setup - something like
display: grid; grid-template-columns: 30px 1fr 1fr 20px
, you can do it with the JIT as such: `snowe@programming.dev 1 year ago
Thanks for the explanation. Looks like there was a lemmy issue with that classes but I think I get it.
ahto@feddit.de 1 year ago
FYI lemmy ate all the classes on your divs.