tangled
alpha
login
or
join now
taurean.bryant.land
/
drydown
1
fork
atom
a a vibe-coded abomination experiment of a fragrance review platform built on the atmosphere.
drydown.social
1
fork
atom
overview
issues
pulls
pipelines
style + IxD tweaks
taurean.bryant.land
2 months ago
5fcc24e2
f030c7fb
+3
-3
2 changed files
expand all
collapse all
unified
split
src
components
ReviewCard.tsx
ReviewList.tsx
+3
-2
src/components/ReviewCard.tsx
···
14
14
<div
15
15
onClick={onClick}
16
16
style={{
17
17
-
border: '1px solid #ddd',
17
17
+
border: status === 'inProgress' ? '1px dashed #ccc' : '1px solid #ddd',
18
18
borderRadius: '8px',
19
19
padding: '1rem',
20
20
marginBottom: '1rem',
21
21
cursor: onClick ? 'pointer' : 'default',
22
22
-
backgroundColor: onClick ? '#fff' : '#f9f9f9', // subtle hint
22
22
+
backgroundColor: onClick ? (status === 'ready' ? '#fff' : '#fff') : '#f5f5f5',
23
23
+
opacity: status === 'inProgress' ? 0.7 : 1,
23
24
transition: 'background-color 0.2s',
24
25
}}
25
26
onMouseEnter={(e) => {
-1
src/components/ReviewList.tsx
···
44
44
review={review}
45
45
fragranceName={getFragranceName(review.value.fragrance)}
46
46
status="inProgress"
47
47
-
onClick={() => onReviewClick(review)}
48
47
/>
49
48
))}
50
49
</section>