a homebrewed DnD campaign based in the Honkai: Star Rail universe
hsr honkaistarrail dnd

refactor: minor fixes (#96)

authored by samanthanguyen.me and committed by

GitHub 177f1d71 d7d560b6

+8 -3
+4
.github/dependabot.yml
··· 7 7 updates: 8 8 - package-ecosystem: 'npm' 9 9 directory: '/' 10 + labels: 11 + - deps/js 10 12 schedule: 11 13 interval: 'monthly' 12 14 commit-message: ··· 61 63 62 64 - package-ecosystem: 'github-actions' 63 65 directory: '/' 66 + labels: 67 + - deps/actions 64 68 schedule: 65 69 interval: 'daily' 66 70 commit-message:
+2 -1
app/src/lib/patterns/Element/ElementChip.svelte
··· 14 14 ...other 15 15 }: ElementChipProps = $props() 16 16 const elementColor = $derived(getElementColor(element)) 17 + const isTextDark = $derived(style === 'fill') 17 18 </script> 18 19 19 20 <Chip ··· 22 23 color={elementColor} 23 24 style={style} 24 25 > 25 - <ElementText element={element} dark={style === 'fill'} /> 26 + <ElementText element={element} dark={isTextDark} /> 26 27 </Chip>
-2
packages/icons/.storybook/main.ts
··· 16 16 options: {}, 17 17 }, 18 18 async viteFinal(config) { 19 - // Merge custom configuration into the default config 20 19 const { mergeConfig } = await import('vite') 21 - 22 20 return mergeConfig(config, { 23 21 server: { 24 22 fs: {
+1
packages/icons/.storybook/preview.ts
··· 1 1 import type { Preview } from '@storybook/sveltekit' 2 + import './tailwind.css' 2 3 3 4 const preview: Preview = { 4 5 parameters: {
+1
packages/icons/.storybook/tailwind.css
··· 1 + @import 'tailwindcss';