
Even you have set the width as 100vw (It means 100% of screen, correspondent with โh-screenโ on TailwindCSS)
You got additional margin.
Because, the 100vw size doesn't count the size of scroll bar. To resolve this, You can choose two options.
Use โw-fullโ but โw-screenโ
Use โw-fullโ but โw-screenโ, and that count the size of scroll bar, and doesnโt make additional margin.
Or add โw-max-fullโ
Or add โw-max-fullโ. It limits the width to full of width. And itโs not over the full width of the screen.
Check a post on the StackOverFlow