payload-totp
Version:
Add an extra security layer to PayloadCMS using a Time-based One-time Password (TOTP).
27 lines (23 loc) • 430 B
CSS
.link {
padding: 0;
margin: 0;
background: transparent;
border: 0;
color: var(--theme-success-700);
cursor: pointer;
}
.link:hover {
text-decoration: underline;
}
.secret {
background: var(--theme-elevation-50);
border: 1px solid var(--theme-elevation-100);
padding: 6px 12px;
display: flex;
align-items: center;
gap: 8px;
border-radius: 6px;
}
html[data-theme='dark'] .link {
color: var(--theme-success-500);
}