This repository has no description
0

Configure Feed

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

add padding

+3 -5
+2 -4
src/components/CompareScores/CompareScores.css
··· 317 317 margin: 10px 0; 318 318 } 319 319 320 - .comparison-summary-text { 321 - padding-bottom: 15px; 322 - } 323 - 324 320 /* Container for elements below the score breakdowns */ 325 321 .comparison-extras { 326 322 flex: 1 1 100%; ··· 543 539 align-content: center; 544 540 font-size: 0.8em; 545 541 gap: 20px; 542 + margin-bottom: 23px; 543 + margin-top: -10px; 546 544 }
+1 -1
src/components/UserProfile/CircularLogo.js
··· 13 13 // Determine if it's a web DID and create repeated text if necessary 14 14 const isWebDid = did.startsWith('did:web'); 15 15 const text = isWebDid 16 - ? Array(webDidRepetitions).fill(did).join(' ') 16 + ? Array(webDidRepetitions).fill(did).join(' ') 17 17 : did; 18 18 19 19 const textGroupRef = useRef(null);