Skip to content

Commit

Permalink
Replace div with span
Browse files Browse the repository at this point in the history
  • Loading branch information
mpanne committed May 15, 2024
1 parent cd5b61d commit 824eae1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,21 +84,21 @@
<span class="flex items-center">
Eigenschaft
<span class="flex flex-col items-center ml-8">
<div
<span
class="arrow-up mb-2"
:class="{
active:
sortKey == 'characteristic' && sortDirection == 'asc',
}"
></div>
<div
></span>
<span
class="arrow-down"
:class="{
active:
sortKey == 'characteristic' &&
sortDirection == 'desc',
}"
></div>
></span>
</span>
</span>
</th>
Expand All @@ -119,20 +119,20 @@
<span class="flex items-center justify-end">
Anzahl
<span class="flex flex-col items-center ml-8">
<div
<span
class="arrow-up mb-2"
:class="{
active:
sortKey == 'percentage' && sortDirection == 'asc',
}"
></div>
<div
></span>
<span
class="arrow-down"
:class="{
active:
sortKey == 'percentage' && sortDirection == 'desc',
}"
></div>
></span>
</span>
</span>
</th>
Expand Down

0 comments on commit 824eae1

Please sign in to comment.