18 lines
288 B
CSS
18 lines
288 B
CSS
.button {
|
|
background-color: transparent;
|
|
color: var(--Base-Text-High-contrast);
|
|
border-width: 0;
|
|
cursor: pointer;
|
|
display: flex;
|
|
gap: var(--Spacing-x1);
|
|
align-items: center;
|
|
}
|
|
|
|
.chevron {
|
|
transition: transform 0.2s;
|
|
}
|
|
|
|
.chevron.isExpanded {
|
|
transform: rotate(180deg);
|
|
}
|