clone of github.com/decent-newsroom/newsroom
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
531 B

/* NIP-05 Badge Component Styles */
.nip05-badge {
display: inline-flex;
align-items: center;
gap: 0.25rem;
padding: 0.125rem 0.5rem;
background-color: rgba(34, 197, 94, 0.1);
border: 1px solid rgba(34, 197, 94, 0.3);
border-radius: 0.375rem;
font-size: 0.875rem;
color: rgb(22, 163, 74);
font-weight: 500;
}
.nip05-badge.verified {
cursor: help;
}
.nip05-identifier {
white-space: nowrap;
}
@media (max-width: 640px) {
.nip05-identifier {
max-width: 150px;
}
}