You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.acordeon .trigger::after {
content: '';
display: inline-block;
width: 1.5rem;
height: 1.5rem;
background-repeat: no-repeat;
background-size: contain;
background-image: url('../img/icons/arrow-top.svg');
/transform: rotate(180deg)/ --> iclua essa linha para que a seta fique na posição correta.
transition: .25s;
}
.acordeon.open .trigger::after {
transform: rotate(180deg); --> substitua por 0deg.
}
The text was updated successfully, but these errors were encountered:
.acordeon .trigger::after {
content: '';
display: inline-block;
width: 1.5rem;
height: 1.5rem;
background-repeat: no-repeat;
background-size: contain;
background-image: url('../img/icons/arrow-top.svg');
/transform: rotate(180deg)/ --> iclua essa linha para que a seta fique na posição correta.
transition: .25s;
}
.acordeon.open .trigger::after {
transform: rotate(180deg); --> substitua por 0deg.
}
The text was updated successfully, but these errors were encountered: