nukeop/nuclear

View on GitHub
packages/ui/lib/components/PopupButton/styles.scss

Summary

Maintainability
Test Coverage
@import "../../common.scss";

.popup_button {
  width: 100%;
  padding: 0.5em;
  text-decoration: none;
  color: $white;
  transition: $short-duration;
  user-select: none;

  &.nuclear.dropdown {
    background: none;
    border: none;
    transition: $short-duration;
  }

  &.nuclear.dropdown:hover,
  &.nuclear.dropdown:active,
  &.nuclear.dropdown:focus,
  &:hover {
    background: $pink;
    text-decoration: none;
    color: $white;
    border: none;
    box-shadow: none;
  }
}