30 lines
522 B
SCSS
30 lines
522 B
SCSS
@import "../../assets/scss/globals";
|
|
|
|
|
|
.accordion-icon {
|
|
display: flex;
|
|
background-color: color(blue);
|
|
color: color(white);
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-width: 40px;
|
|
max-width: 40px;
|
|
min-height: 40px;
|
|
max-height: 40px;
|
|
margin: 0.2em;
|
|
font-size: 40px;
|
|
|
|
&.open {
|
|
background-color: color(orange1);
|
|
}
|
|
}
|
|
|
|
.accordion-text {
|
|
&.open {
|
|
-webkit-transform: rotate(45deg);
|
|
-moz-transform: rotate(45deg);
|
|
-o-transform: rotate(45deg);
|
|
transform: rotate(45deg);
|
|
}
|
|
}
|