sparkletown/sparkle

View on GitHub
src/components/atoms/UserStatusDropdown/UserStatusDropdown.scss

Summary

Maintainability
Test Coverage
@import "scss/constants";

.UserStatusDropdown {
  display: flex;
  flex-direction: row;

  &__status {
    font-weight: $font-weight--500;
  }

  .Dropdown__button {
    text-decoration: underline;
    font-weight: $font-weight--400;

    &::after {
      display: none;
    }
  }

  &__item {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    padding: 0 $spacing--md;
    opacity: 0.8;
  }
}