<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.switchable-button {
  font-size: 12px;
  padding: 7px 11px;

  a {
    text-decoration: none;

    &amp;:hover {
      text-decoration: none;
    }
  }

  span {
    padding: 4px 8px;
    border-radius: 4px;
  }

  &amp;:not(.active) {
    a {
      color: var(--gray-lighter);
    }
    background-color: var(--gray-light0);
  }

  &amp;.active {
    a {
      color: white;
    }
    background-color: var(--button-active);
  }
}</pre></body></html>