Я хотел бы создать кнопку с горизонтальным эффектом затвора , подобным связанному.Я попытался скопировать биты из вышеупомянутых ссылок, но не смог добиться эффекта ... как мне этого добиться?
export const Button = styled.button`
background-color: gold;
border: none;
width: 100%;
color: #000;
font-size: 1.25rem;
font-family: 'Roboto';
text-transform: uppercase;
font-weight: bold;
padding: 10px 0;
border-radius: 8px;
text-decoration: none;
& > a {
display: block;
text-decoration: none;
color: black;
&:before {
content: '';
position: absolute;
z-index: -999;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: black;
}
&:hover {
color: white;
}
&:visited {
color: indigo;
}
}
`