diff --git a/src/components/CompareScores/CompareScores.css b/src/components/CompareScores/CompareScores.css index b16fecc..9d6bbdf 100644 --- a/src/components/CompareScores/CompareScores.css +++ b/src/components/CompareScores/CompareScores.css @@ -317,10 +317,6 @@ margin: 10px 0; } -.comparison-summary-text { - padding-bottom: 15px; -} - /* Container for elements below the score breakdowns */ .comparison-extras { flex: 1 1 100%; @@ -543,4 +539,6 @@ align-content: center; font-size: 0.8em; gap: 20px; + margin-bottom: 23px; + margin-top: -10px; } \ No newline at end of file diff --git a/src/components/UserProfile/CircularLogo.js b/src/components/UserProfile/CircularLogo.js index d97e085..7d566ad 100644 --- a/src/components/UserProfile/CircularLogo.js +++ b/src/components/UserProfile/CircularLogo.js @@ -13,7 +13,7 @@ const CircularLogo = ({ // Determine if it's a web DID and create repeated text if necessary const isWebDid = did.startsWith('did:web'); const text = isWebDid - ? Array(webDidRepetitions).fill(did).join(' ') + ? Array(webDidRepetitions).fill(did).join(' ') : did; const textGroupRef = useRef(null);