Skip to content

Commit

Permalink
fix: move tables underneath levi control
Browse files Browse the repository at this point in the history
  • Loading branch information
Zakrok09 committed Jul 20, 2024
1 parent 9456314 commit 832b6b5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions gs/src/lib/panels/tabs/LeviTab.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@
<Command cmd="vert_mode_sine" text="Vertical Sine" />
<Command cmd="vert0_reset" text="Reset Vertical 0 current" />
</Tile>
<Tile heading="Gaps" containerClass="col-span-2">
<Table background="bg-surface-900" titles={["Gap", "EMS", "HEMS"]} tableArr={tableGaps} />
</Tile>
<Tile heading="Levi Voltages" insideClass="flex flex-col justify-center">
<Table background="bg-surface-900" titles={["Value", "V"]} tableArr={leviVolt} />
</Tile>
<Tile heading="Levi Rotation" insideClass="flex flex-col justify-center">
<Table background="bg-surface-900" titles={["Axis", "Value"]} tableArr={leviHems} />
</Tile>
<Tile containerClass="col-span-4">
<Chart title="HEMS Current" background="bg-surface-900" height={300} />
</Tile>
Expand All @@ -45,15 +54,6 @@
<Tile containerClass="col-span-2">
<Chart title="EMS Temperatures" background="bg-surface-900" />
</Tile>
<Tile heading="Gaps" containerClass="col-span-2">
<Table background="bg-surface-900" titles={["Gap", "EMS", "HEMS"]} tableArr={tableGaps} />
</Tile>
<Tile heading="Levi Voltages" insideClass="flex flex-col justify-center">
<Table background="bg-surface-900" titles={["Value", "V"]} tableArr={leviVolt} />
</Tile>
<Tile heading="Levi Rotation" insideClass="flex flex-col justify-center">
<Table background="bg-surface-900" titles={["Axis", "Value"]} tableArr={leviHems} />
</Tile>
</TileGrid>
<br>
</div>
Expand Down

0 comments on commit 832b6b5

Please sign in to comment.