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
463 B

4 years ago
  1. <script>
  2. export let label = "Label";
  3. export let value = "";
  4. </script>
  5. <div class="property">
  6. <div class="property-label">{label}:</div>
  7. <div class="property-value"><slot>{value}</slot></div>
  8. </div>
  9. <style>
  10. div.property {
  11. padding: 0.5em 1ch;
  12. }
  13. div.property-label {
  14. font-size: 0.75em;
  15. font-weight: 800;
  16. }
  17. div.property-value {
  18. font-size: 1em;
  19. }
  20. :global(form) div.property:last-of-type {
  21. margin-bottom: 1em;
  22. }
  23. </style>