a a vibe-coded abomination experiment of a fragrance review platform built on the atmosphere. drydown.social

style + IxD tweaks

+3 -3
+3 -2
src/components/ReviewCard.tsx
··· 14 14 <div 15 15 onClick={onClick} 16 16 style={{ 17 - border: '1px solid #ddd', 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 - backgroundColor: onClick ? '#fff' : '#f9f9f9', // subtle hint 22 + backgroundColor: onClick ? (status === 'ready' ? '#fff' : '#fff') : '#f5f5f5', 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 - onClick={() => onReviewClick(review)} 48 47 /> 49 48 ))} 50 49 </section>