Scrollbar: change color

This commit is contained in:
chiayin
2023-06-30 10:37:51 +08:00
parent d976bc529d
commit 466c6ea867
7 changed files with 26 additions and 15 deletions

View File

@@ -4,7 +4,7 @@
<p class="h2 pl-2 border-b mb-3">Activity</p>
<div class="flex flex-wrap justify-start content-start gap-4 px-2 overflow-y-auto scrollbar h-[calc(100%_-_52px)]">
<div class="flex items-center w-[166px]" v-for="(act, index) in data" :key="index">
<Checkbox v-model="actList" :inputId="index" name="actList" :value="act" />
<Checkbox v-model="actList" :inputId="index.toString()" name="actList" :value="act" />
<label :for="index" class="ml-2 p-2 whitespace-nowrap break-keep text-ellipsis overflow-hidden">{{ act }}{{ index }}</label>
</div>
</div>