feat: use pin-input on sign in

This commit is contained in:
Ephraim Atta-Duncan
2024-02-15 15:55:58 +00:00
parent 897f0dabde
commit 345c4b8b14
4 changed files with 176 additions and 32 deletions

View File

@ -114,3 +114,25 @@
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: rgb(100 116 139 / 0.5);
}
@keyframes blink-caret {
50% {
background: transparent;
}
}
@keyframes shake {
25% {
transform: translateX(10px);
}
75% {
transform: translateX(-10px);
}
}
@keyframes pulse-border {
50% {
border-color: var(--segment-color);
box-shadow: var(--segment-color) 0 0 0 1px;
}
}