This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

fix home page styling

+5 -6
+1 -1
src/components/Home/Home.css
··· 13 13 14 14 form.search-bar { 15 15 align-items: center; 16 - flex-direction: column; 16 + flex-direction: row; 17 17 gap: 0px; 18 18 }
+1 -2
src/components/SearchBar/SearchBar.css
··· 7 7 } 8 8 9 9 .search-bar input { 10 - width: 300px; 11 10 padding: 10px; 12 11 font-size: 1em; 13 12 border: 1px solid #ccc; ··· 35 34 } 36 35 37 36 form { 38 - padding: 20px 35px; 37 + padding: 20px 20px; 39 38 flex-direction: unset; 40 39 gap: 0px; 41 40 }
+1 -1
src/components/SearchBar/SearchBar.js
··· 22 22 <form className="search-bar" onSubmit={handleSubmit}> 23 23 <input 24 24 type="text" 25 - placeholder="Enter Bluesky username (e.g., dame.bsky.social)" 25 + placeholder="(e.g. dame.bsky.social)" 26 26 value={username} 27 27 onChange={(e) => setUsername(e.target.value)} 28 28 required
+2 -2
src/components/UserProfile/components/PostTypeCard.js
··· 80 80 textAnchor={textAnchor} 81 81 fill="#999" 82 82 > 83 - {`(Rate ${(percent * 100).toFixed(2)}%)`} 83 + {`${(percent * 100).toFixed(2)}%)`} 84 84 </text> 85 85 </g> 86 86 ); ··· 118 118 activeIndex={activeIndex} 119 119 activeShape={renderActiveShape} 120 120 data={data} 121 - cx="45%" 121 + cx="50%" 122 122 cy="50%" 123 123 innerRadius={45} 124 124 outerRadius={80}