Skip to content

Commit

Permalink
fix: indentation bug
Browse files Browse the repository at this point in the history
  • Loading branch information
deansallinen committed Dec 13, 2024
1 parent 0b8cb41 commit b90097c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,10 @@
<ul
data-solo={children.length === 1}
class="children col-span-full grid grid-cols-subgrid *:data-[solo=false]:border-l last:*:data-[solo=false]:border-transparent"
style={`margin-left:calc(1rem * ${level + 1})`}
class:ml-8={level > 0}
class:ml-4={level === 0}
>
<!-- style={`margin-left:calc(1rem * ${level + 1})`} -->
{#each children as child}
<Self permission={child} level={level + 1} />
{/each}
Expand Down

0 comments on commit b90097c

Please sign in to comment.