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.

17 lines
365 B

1 year ago
  1. <script lang="ts">
  2. export let weight = 1;
  3. export let left = false;
  4. export let right = false;
  5. </script>
  6. <div class="hsplit-part" class:right class:left style="flex: {weight}"><slot></slot></div>
  7. <style lang="sass">
  8. div.hsplit-part
  9. box-sizing: border-box
  10. padding: 0 0.5ch
  11. &.left
  12. padding-left: 0
  13. &.right
  14. padding-right: 0
  15. </style>