spur-tailwind
Version:
Spur web UI
30 lines (23 loc) • 504 B
CSS
.location-switcher {
@apply relative min-w-profile-dropdown w-full text-spur-black;
}
.location-switcher-button {
@apply flex flex-grow justify-between items-center pr-2;
@screen xl {
@apply pr-0;
}
}
.location-switcher-icon {
transition: transform 200ms ease-in-out;
}
.location-switcher-location {
@apply text-xs;
}
.location-switcher.is-active .location-switcher-icon {
transform: rotate(-180deg);
}
@screen md {
.location-switcher {
@apply w-auto text-spur-black;
}
}