Having trouble getting my button text to align on the left side, even when using text-align left with !important.
<ButtonStyled> Esqueci minha senha </ButtonStyled>
Here's the style:
export const ButtonStyled = styled(Button)`
background: transparent !important;
color: #000 !important;
text-align: left !important;
&:hover {
background: transparent !important;
color: #12b2ce !important;
}
`;
Check out the code here: https://codesandbox.io/s/small-lake-grxyz