tangled
alpha
login
or
join now
flo-bit.dev
/
blento
21
fork
atom
your personal website on atproto - mirror
blento.app
21
fork
atom
overview
issues
pulls
pipelines
more styling fixes
Florian
1 month ago
3bcef3b9
733d60ae
+2
-2
2 changed files
expand all
collapse all
unified
split
src
lib
cards
ButtonCard
ButtonCard.svelte
EditingButtonCard.svelte
+1
-1
src/lib/cards/ButtonCard/ButtonCard.svelte
···
14
14
class={cn(
15
15
'text-base-950 dark:text-base-50 line-clamp-1 inline-flex items-center justify-center px-4 text-2xl font-semibold',
16
16
item.color === 'transparent'
17
17
-
? 'bg-accent-500 dark:text-base-950 rounded-2xl px-5 py-2.5 text-xl'
17
17
+
? 'bg-accent-400 dark:bg-accent-500 hover:bg-accent-400 dark:text-base-950 rounded-2xl px-5 py-2.5 text-xl transition-colors duration-100'
18
18
: ''
19
19
)}
20
20
>
+1
-1
src/lib/cards/ButtonCard/EditingButtonCard.svelte
···
16
16
class={cn(
17
17
'line-clamp-1 text-center text-2xl font-semibold',
18
18
item.color === 'transparent'
19
19
-
? 'bg-accent-500 dark:text-base-950 rounded-2xl px-5 py-2.5 text-xl'
19
19
+
? 'bg-accent-400 dark:bg-accent-500 hover:bg-accent-400 dark:text-base-950 rounded-2xl px-5 py-2.5 text-xl transition-colors duration-100'
20
20
: ''
21
21
)}
22
22
/>