I have a very basic setup, nothing special, just HTML (no Vue etc). I have Tailwind installed and everything is running. When I deploy to Netlify, Tailwind styles are applied, but still the site looks very different. I don't purge and I use the "netlify deploy" command.
So here are my steps:
Here are the screenshots:
Local:
On Netlify:
As you can see, there is a lot more spacing between the icons and I wonder why that is. When I inspect the code, it's exactly the same. I have been at this for a couple of hours now and I can't procede before I know where this problem is coming from.
Things I have tried:
Sources:
Repo: https://github.com/RobineSavert/map-portfolio
Netlify: https://6190119577337c9293c65f02--ecstatic-thompson-9cf61b.netlify.app/
My deployment settings on Netlify
Can anyone tell me what I am doing wrong? Thanks so much!
If you want the result to look alike first image, then coming to the wrapper for your icons on line 30:
<!-- from this -->
<div class="flex flex-wrap just m-16 py-3 justify-between">
<!-- to this -->
<div class="... justify-start">
would solve it, although i'm not sure about just
??