This repository has no description
0

Configure Feed

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

ad automcplete

+6 -17
+6 -17
src/components/Verifier/Verifier.css
··· 390 390 .verifier-suggestions-list { 391 391 list-style: none; 392 392 padding: 0; 393 - margin: 5px 0 0 0; 393 + margin: 10px 0px 0px 0px; 394 394 position: absolute; 395 395 top: 100%; /* Position below the input */ 396 396 left: 0; 397 397 right: 0; 398 398 background-color: var(--navbar-bg); /* Match nearby elements */ 399 - border: 1px solid var(--card-border); 400 - border-top: none; /* Avoid double border with input */ 401 - border-radius: 0 0 6px 6px; /* Round bottom corners */ 402 - max-height: 250px; /* Limit height and allow scroll */ 403 - overflow-y: auto; 399 + border: 2px solid var(--card-border); 400 + border-radius: 6px; /* Round bottom corners */ 401 + max-height: 275px; /* Limit height and allow scroll */ 402 + overflow: clip; 404 403 z-index: 1000; /* Ensure it appears above other content */ 405 404 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 406 405 } ··· 411 410 padding: 10px 15px; 412 411 cursor: pointer; 413 412 transition: background-color 0.2s ease; 414 - } 415 - 416 - .verifier-suggestion-item:hover { 417 - background-color: var(--button-hover-bg); /* Use button hover for consistency */ 418 - color: var(--button-text); 419 413 } 420 414 421 415 .verifier-suggestion-item.loading, ··· 458 452 color: var(--text-muted); 459 453 text-overflow: ellipsis; 460 454 overflow: hidden; 461 - } 462 - 463 - /* Adjust handle color on hover */ 464 - .verifier-suggestion-item:hover .verifier-suggestion-handle { 465 - color: var(--button-text); /* Match parent hover color */ 466 - } 455 + }