lighten forced codebox bg color

This commit is contained in:
pat-s 2024-12-22 12:12:15 +01:00
parent 1cb006844d
commit 6fcfd0d5d6
No known key found for this signature in database
GPG key ID: 3C6318841EF78925
8 changed files with 8 additions and 8 deletions

View file

@ -3,7 +3,7 @@
<ListItem <ListItem
v-for="agent in props.agents" v-for="agent in props.agents"
:key="agent.id" :key="agent.id"
class="items-center !bg-wp-background-300 !dark:bg-wp-background-200" class="items-center !bg-wp-background-200 !dark:bg-wp-background-200"
> >
<span>{{ agent.name || `Agent ${agent.id}` }}</span> <span>{{ agent.name || `Agent ${agent.id}` }}</span>
<span class="ml-auto"> <span class="ml-auto">

View file

@ -3,7 +3,7 @@
<ListItem <ListItem
v-for="registry in registries" v-for="registry in registries"
:key="registry.id" :key="registry.id"
class="items-center !bg-wp-background-300 !dark:bg-wp-background-200" class="items-center !bg-wp-background-200 !dark:bg-wp-background-200"
> >
<span>{{ registry.address }}</span> <span>{{ registry.address }}</span>
<IconButton <IconButton

View file

@ -3,7 +3,7 @@
<ListItem <ListItem
v-for="secret in secrets" v-for="secret in secrets"
:key="secret.id" :key="secret.id"
class="items-center !bg-wp-background-300 !dark:bg-wp-background-200" class="items-center !bg-wp-background-200 !dark:bg-wp-background-200"
> >
<span>{{ secret.name }}</span> <span>{{ secret.name }}</span>
<Badge <Badge

View file

@ -4,7 +4,7 @@
<ListItem <ListItem
v-for="org in orgs" v-for="org in orgs"
:key="org.id" :key="org.id"
class="items-center gap-2 !bg-wp-background-300 !dark:bg-wp-background-200" class="items-center gap-2 !bg-wp-background-200 !dark:bg-wp-background-200"
> >
<span>{{ org.name }}</span> <span>{{ org.name }}</span>
<IconButton <IconButton

View file

@ -29,7 +29,7 @@
<ListItem <ListItem
v-for="task in tasks" v-for="task in tasks"
:key="task.id" :key="task.id"
class="items-center !bg-wp-background-300 !dark:bg-wp-background-200 mb-2" class="items-center !bg-wp-background-200 !dark:bg-wp-background-200 mb-2"
> >
<div <div
class="flex items-center" class="flex items-center"

View file

@ -13,7 +13,7 @@
<ListItem <ListItem
v-for="repo in repos" v-for="repo in repos"
:key="repo.id" :key="repo.id"
class="items-center gap-2 !bg-wp-background-300 !dark:bg-wp-background-200" class="items-center gap-2 !bg-wp-background-200 !dark:bg-wp-background-200"
> >
<span>{{ repo.full_name }}</span> <span>{{ repo.full_name }}</span>
<div class="flex items-center ml-auto"> <div class="flex items-center ml-auto">

View file

@ -14,7 +14,7 @@
<ListItem <ListItem
v-for="user in users" v-for="user in users"
:key="user.id" :key="user.id"
class="items-center gap-2 !bg-wp-background-300 !dark:bg-wp-background-200" class="items-center gap-2 !bg-wp-background-200 !dark:bg-wp-background-200"
> >
<img v-if="user.avatar_url" class="rounded-md h-6" :src="user.avatar_url" /> <img v-if="user.avatar_url" class="rounded-md h-6" :src="user.avatar_url" />
<span>{{ user.login }}</span> <span>{{ user.login }}</span>

View file

@ -18,7 +18,7 @@
<ListItem <ListItem
v-for="cron in crons" v-for="cron in crons"
:key="cron.id" :key="cron.id"
class="items-center !bg-wp-background-300 !dark:bg-wp-background-200" class="items-center !bg-wp-background-200 !dark:bg-wp-background-200"
> >
<span class="grid grid-cols-3 w-full"> <span class="grid grid-cols-3 w-full">
<span>{{ cron.name }}</span> <span>{{ cron.name }}</span>