|
|
@@ -129,13 +129,13 @@
|
|
|
</section>
|
|
|
|
|
|
<div
|
|
|
- v-for="(row, rowIndex) in filteredTableData"
|
|
|
+ v-for="row in filteredTableData"
|
|
|
:key="row.teamName"
|
|
|
class="ladder-row"
|
|
|
:style="{ width: row.tableWidth, '--row-bg': row.backgroundColor }"
|
|
|
>
|
|
|
<div class="team-cell">
|
|
|
- <span class="team-index">0{{ rowIndex + 1 }}</span>
|
|
|
+ <!-- <span class="team-index">0{{ rowIndex + 1 }}</span> -->
|
|
|
<div class="team-details">
|
|
|
<span class="team-name">{{ row.teamName }}</span>
|
|
|
<span class="team-count">{{ row.memberCount }}人</span>
|
|
|
@@ -1964,6 +1964,7 @@ onMounted(async () => {
|
|
|
line-height: 1.1;
|
|
|
writing-mode: vertical-lr;
|
|
|
text-orientation: upright;
|
|
|
+ user-select: none;
|
|
|
}
|
|
|
|
|
|
.bookmark-count {
|
|
|
@@ -1973,6 +1974,7 @@ onMounted(async () => {
|
|
|
color: #234395;
|
|
|
font-size: 9px;
|
|
|
letter-spacing: 0;
|
|
|
+ user-select: none;
|
|
|
}
|
|
|
|
|
|
.notice-cell {
|