8 lines
97 B
CSS
8 lines
97 B
CSS
.chevron {
|
|
transition: transform 0.2s;
|
|
}
|
|
|
|
.chevron.isExpanded {
|
|
transform: rotate(180deg);
|
|
}
|