Skip to content

Commit 6de4ab0

Browse files
authored
Merge pull request #109 from keyxmakerx/claude/fix-journal-button-placement-UF4hD
fix: replace invalid accent-primary Tailwind class with accent-accent
2 parents ddec0cf + 252d14f commit 6de4ab0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

internal/plugins/campaigns/settings.templ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ templ CampaignSettingsPage(cc *CampaignContext, transfer *OwnershipTransfer, ent
305305
<div class="space-y-2">
306306
<template x-for="m in members" :key="m.user_id">
307307
<label class="flex items-center gap-3 p-2 rounded hover:bg-surface-alt cursor-pointer transition-colors">
308-
<input type="checkbox" class="accent-primary" :checked="isGranted(m.user_id)" @change="toggle(m.user_id)"/>
308+
<input type="checkbox" class="accent-accent" :checked="isGranted(m.user_id)" @change="toggle(m.user_id)"/>
309309
<div class="flex-1 min-w-0">
310310
<span class="text-sm font-medium text-fg" x-text="m.display_name || m.email"></span>
311311
<span class="text-xs text-fg-muted ml-1" x-text="m.role === 2 ? '(Scribe)' : '(Player)'"></span>

static/css/input.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1142,7 +1142,7 @@
11421142
@apply flex items-center gap-1.5 cursor-pointer hover:text-fg transition-colors;
11431143
}
11441144
.note-share-opt input[type="radio"] {
1145-
@apply accent-primary;
1145+
accent-color: var(--color-accent, #6366f1);
11461146
}
11471147
.note-share-members {
11481148
@apply mt-2 pt-2 border-t border-edge flex flex-col gap-1 max-h-[120px] overflow-y-auto;
@@ -1152,7 +1152,7 @@
11521152
hover:text-fg transition-colors;
11531153
}
11541154
.note-share-member input[type="checkbox"] {
1155-
@apply accent-primary;
1155+
accent-color: var(--color-accent, #6366f1);
11561156
}
11571157
.note-share-no-members {
11581158
@apply text-[10px] text-fg-muted italic;

0 commit comments

Comments
 (0)