Skip to content

Commit

Permalink
fix: remove AC from player view
Browse files Browse the repository at this point in the history
  • Loading branch information
valentine195 committed May 13, 2023
1 parent 7e8cf1f commit c6ecb19
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/tracker/player/PlayerView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
<th style="width:5%"><strong use:iniIcon /></th>
<th class="left" style="width:30%"><strong>Name</strong></th>
<th style="width:15%" class="center"><strong use:hpIcon /></th>
<th style="width:15%" class="center"><strong use:acIcon /></th>
<th><strong> Statuses </strong></th>
</thead>
<tbody>
Expand All @@ -81,12 +80,6 @@
<span>{getHpStatus(creature.hp, creature.max)}</span>
{/if}
</td>
<td
class="ac center"
class:dirty-ac={creature.current_ac != creature.ac}
>
<span>{creature.current_ac ?? ""}</span>
</td>
<td class="center">
{[...creature.status].map((s) => s.name).join(", ")}
</td>
Expand Down Expand Up @@ -143,7 +136,4 @@
:global(.theme-dark) .active {
background-color: rgba(255, 255, 255, 0.1);
}
.dirty-ac {
font-weight: var(--font-bold);
}
</style>

0 comments on commit c6ecb19

Please sign in to comment.