feature: oznaczenie pojazdów dla sponsorów

This commit is contained in:
2023-03-03 13:25:52 +01:00
parent 76912ceacb
commit 65701bee74
5 changed files with 16 additions and 6 deletions
+5 -1
View File
@@ -9,7 +9,7 @@
@dragover="allowDrop"
>
<span @click="onListItemClick(stockIndex)" :key="stock.id">
<b>
<b :class="{ supporter: stock.supportersOnly }">
{{ stock.type }}
</b>
@@ -120,5 +120,9 @@ const allowDrop = (e: DragEvent) => {
max-height: 60px;
}
}
.supporter {
color: salmon;
}
</style>