This is bugging me because it only moves right to left slightly and everything is offset to the right because the width is flowing over.
I have set to my navbar properties:
.navbar{
background: rgb(7, 102, 197);
background: linear-gradient(0deg, rgba(7,101,195,1) 0%, rgba(0,72,144,1) 100%);
padding:0;
width: 100%;
}
within index.css i also have width 100%
From the second image you can see it is greater
I did try applying:
overflow-x:hidden;
But this doesn't remove the issue

