12 lines
130 B
CSS
12 lines
130 B
CSS
.button {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.chevron {
|
|
transition: transform 0.2s;
|
|
}
|
|
|
|
.chevron.isExpanded {
|
|
transform: rotate(180deg);
|
|
}
|