This repository has no description
0

Configure Feed

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

change shouldshow

+21 -7
+11
src/components/Navbar/Navbar.css
··· 317 317 padding-bottom: 10px !important; 318 318 } 319 319 320 + .nav-icon-discord { 321 + align-items: center; 322 + color: #004f84; 323 + display: inline-flex; 324 + justify-content: center; 325 + padding: .5rem; 326 + scale: 1.7; 327 + padding-right: 10px; 328 + transition: color .2s ease; 329 + } 330 + 320 331 /* Adjust hover state for dropdown items */ 321 332 .dropdown-menu li a:hover { 322 333 background-color: rgba(59, 154, 248, 0.1);
+1 -1
src/components/Navbar/Navbar.js
··· 183 183 href="https://discord.gg/95ypHb2qPE" 184 184 target="_blank" 185 185 rel="noopener noreferrer" 186 - className="nav-icon" 186 + className="nav-icon-discord" 187 187 aria-label="Discord Profile" 188 188 > 189 189 <svg className="icon" fill="currentColor">
+4 -1
src/components/Resources/Resources.js
··· 294 294 }, [filteredResources, activeCategory, categories]); 295 295 296 296 // Should show featured section only when All category is selected and search query is empty 297 - const shouldShowFeatured = activeCategory === 'All' && searchQuery.trim() === ''; 297 + const shouldShowFeatured = activeCategory === 'All' && 298 + searchQuery.trim() === '' && 299 + !showNewOnly && 300 + !showScoreImpactOnly; 298 301 299 302 // Handle search input change 300 303 const handleSearchChange = (e) => {
+4 -4
src/components/UserProfile/UserProfile.css
··· 362 362 opacity: 0.5; 363 363 } 364 364 365 - .narrative-methodology-link { 366 - font-size: 0.9em; 367 - } 368 - 369 365 .post-type-card .recharts-surface { 370 366 margin-left: -15px; 371 367 } ··· 495 491 margin-top: 0px; 496 492 margin-top: 12.3px; 497 493 max-width: 400px; 494 + } 495 + 496 + .learn-more-text { 497 + font-size: 0.9em 498 498 } 499 499 500 500 .score-breakdown-container .disclaimer {
+1 -1
src/components/UserProfile/components/NarrativeCard.js
··· 19 19 {narrative2 && <p>{narrative2}</p>} 20 20 {narrative3 && <p>{narrative3}</p>} 21 21 </div> 22 - <p>Learn more about the <Link to="/methodology" className="narrative-methodology-link">scoring methodology</Link> and <Link to="/definitions" className="narrative-methodology-link">key terms/definitions</Link> contained in this summary. Then check out the <Link to="/resources" className="narrative-methodology-link">resources page</Link> to take action!</p> 22 + <p className="learn-more-text">Learn more about the <Link to="/methodology" className="narrative-methodology-link">scoring methodology</Link> and <Link to="/definitions" className="narrative-methodology-link">key terms/definitions</Link> contained in this summary. Then check out the <Link to="/resources" className="narrative-methodology-link">resources page</Link> to take action!</p> 23 23 <div className="disclaimer"> 24 24 <p><strong>NOTE: </strong>This summary was <strong>not</strong> generated using AI.</p> 25 25 </div>