Files
mccans-theme/src/scss/flex-accordian-content.scss
2025-06-17 08:01:10 -07:00

32 lines
589 B
SCSS

section.accordian-content {
padding: 4rem 0;
.accordian-item {
margin: 3rem 0;
box-shadow: 0 0 20px rgba($c-black, 0.1);
padding: 1rem;
svg {
transition: transform $transition-time ease;
}
&.expanded {
svg {
transform: rotate(180deg);
}
}
.content {
display: none;
}
}
a {
@extend .montserrat;
color: $c-brightRed;
text-decoration: none;
font-weight: bold;
text-transform: uppercase;
}
}