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.

27 lines
439 B

4 years ago
4 years ago
  1. <script>
  2. import { link } from "svelte-routing";
  3. export let href = "/";
  4. </script>
  5. <a class="menu-item" href={href} on:click use:link><slot/></a>
  6. <style>
  7. a.menu-item {
  8. display: flex;
  9. background-color: #222;
  10. margin: 0;
  11. padding: 0.25em 1ch;
  12. color: #777;
  13. transition: 250ms;
  14. }
  15. a.menu-item:hover {
  16. background-color: #111;
  17. color: #ccc;
  18. text-decoration: none;
  19. transition: 250ms;
  20. }
  21. </style>