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.

39 lines
664 B

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