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.
18 lines
365 B
18 lines
365 B
<script lang="ts">
|
|
export let weight = 1;
|
|
export let left = false;
|
|
export let right = false;
|
|
</script>
|
|
|
|
<div class="hsplit-part" class:right class:left style="flex: {weight}"><slot></slot></div>
|
|
|
|
<style lang="sass">
|
|
div.hsplit-part
|
|
box-sizing: border-box
|
|
padding: 0 0.5ch
|
|
|
|
&.left
|
|
padding-left: 0
|
|
&.right
|
|
padding-right: 0
|
|
</style>
|