15 lines
271 B
CSS
15 lines
271 B
CSS
.navigationMenuItem.mobile {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: var(--Spacing-x2) 0;
|
|
font-size: var(--typography-Subtitle-1-Mobile-fontSize);
|
|
}
|
|
|
|
.chevron {
|
|
transition: transform 0.3s;
|
|
}
|
|
|
|
.chevron.isExpanded {
|
|
transform: rotate(180deg);
|
|
}
|