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.

43 lines
742 B

4 years ago
4 years ago
4 years ago
4 years ago
  1. <script>
  2. import Icon from 'fa-svelte'
  3. import { faPlus } from '@fortawesome/free-solid-svg-icons/faPlus'
  4. export let top = false;
  5. </script>
  6. <div on:click class="addboi" class:top>
  7. <Icon class="addboi-icon" icon={faPlus} />
  8. <slot></slot>
  9. </div>
  10. <style>
  11. div.addboi {
  12. margin: 0.5em 0 4em 0;
  13. padding: 1em 0;
  14. text-align: center;
  15. border: 4px dotted;
  16. color: #333;
  17. font-size: 2em;
  18. font-weight: 100;
  19. cursor: pointer;
  20. transition: 250ms;
  21. }
  22. div.addboi.top {
  23. margin-bottom: 0.5em;
  24. padding: 0.25em 0;
  25. font-size: 1.5em;
  26. }
  27. div.addboi:hover {
  28. color: #777;
  29. transition: 250ms;
  30. }
  31. div.addboi > :global(.addboi-icon) {
  32. position: relative;
  33. top: 0.125em;
  34. }
  35. </style>