This repository has no description
0

Configure Feed

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

fix styles

+7 -3
+7 -3
src/components/Verifier/Verifier.css
··· 93 93 } 94 94 95 95 .verifier-input-container { 96 - position: relative; /* For autocomplete positioning */ 97 - max-width: 400px; /* Limit width */ 96 + position: relative; /* Needed for autocomplete positioning */ 97 + max-width: 400px; 98 + border: none; /* Remove any potential border */ 99 + outline: none; /* Remove outline on focus */ 100 + padding: 0; /* Remove padding if any was added */ 101 + margin: 0; /* Remove margin if any was added */ 98 102 } 99 103 100 104 .verifier-form-container { ··· 224 228 /* Verification Lists */ 225 229 .verifier-list-header { 226 230 display: flex; 227 - justify-content: space-between; 231 + justify-content: space-between; /* Align button to the right */ 228 232 align-items: center; 229 233 margin-bottom: 10px; /* Space above list */ 230 234 }