Recently, I noticed an issue with a button on my website:
https://i.sstatic.net/5S6fS.png
The button has the following custom styling applied to it:
const SubmitButton = styled.button`
width: 275px;
height: 30px;
background-color: red;
border:none;
outline:none;
`;
After removing the main border, I noticed an annoying left white spacing. How can I get rid of this?