Plan stuff. Log stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
220 B

4 years ago
  1. <span on:click><slot></slot></span>
  2. <style>
  3. span {
  4. color: #777;
  5. cursor: pointer;
  6. transition: 250ms;
  7. }
  8. span:hover {
  9. color: #FFF;
  10. text-decoration: underline;
  11. transition: 250ms;
  12. }
  13. </style>