···8686/* Form Styles */
8787.verifier-section {
8888 background: var(--navbar-bg);
8989- /* border: 1px solid var(--card-border); */ /* Remove border to match alt-card */
9090- border-radius: 12px;
9191- padding: 40px 30px; /* Increase padding to match alt-card */
9292- margin-bottom: 20px;
8989+ border: 5px solid var(--card-border); /* Match alt-card border */
9090+ border-radius: 12px; /* Match alt-card radius */
9191+ box-shadow: none; /* Match alt-card shadow */
9292+ padding: 40px 30px; /* Keep increased padding or adjust if alt-card is different */
9393+ margin: 30px auto; /* Match alt-card margin */
9494+ max-width: 95%; /* Match alt-card max-width */
9595+ /* margin-bottom: 20px; */ /* Remove specific margin-bottom */
9396}
94979598.verifier-input-container {
+2-4
src/components/Verifier/Verifier.js
···647647 }
648648649649 const isAnyOperationInProgress = isVerifying || isRevoking || isLoadingVerifications || isLoadingNetwork || isCheckingValidity;
650650- const trustedVerifiersTooltip = `Checking if any of these Trusted Verifiers have created a verification record for your DID: ${TRUSTED_VERIFIERS.join(', ')}.`;
651650652651 return (
653652 <div className="verifier-container">
654653 <div className="verifier-intro-container">
655654 <h1>Bluesky Verifier Tool</h1>
656655 <p className="verifier-intro-text">
657657- With Bluesky's new decentralized verification system, anyone can verify anyone else and any Bluesky client can choose which accounts to treat as "Trusted Verifiers". It's a first-of-its-kind verification system for a mainstream social platform of this size. Try verifying an account for yourself or check to see who has verified you!
656656+ With Bluesky's new decentralized verification system, anyone can verify anyone else and any Bluesky client can choose which accounts to treat as "Trusted Verifiers". Try verifying an account for yourself or check to see who has verified you! It's as simple as creating a verification record in your PDS that points to the account you want to verify.
658657 </p>
659658 </div>
660659···681680 autoComplete="off"
682681 />
683682 <button type="submit" disabled={isVerifying || !targetHandle} className="verifier-submit-button">
684684- {isVerifying ? 'Verifying...' : 'Create Verification Record'}
683683+ {isVerifying ? 'Verifying...' : 'Verify Account'}
685684 </button>
686685 </form>
687686 {showSuggestions && (suggestions.length > 0 || isFetchingSuggestions) && (
···774773 <div className="verifier-section">
775774 <div className="verifier-list-header">
776775 <h2>Accounts You've Verified</h2>
777777- <button onClick={fetchVerifications} disabled={isAnyOperationInProgress} className="verifier-action-button verifier-refresh-button">Refresh List</button>
778776 </div>
779777780778 {revokeStatusMessage && (