a
All checks were successful
/ upload (release) Successful in 22s

This commit is contained in:
pavel 2026-02-25 01:00:07 +01:00
commit 0273eab753
8 changed files with 127 additions and 8 deletions

View file

@ -354,6 +354,43 @@ select {
color: var(--text-strong);
}
.copied-badge {
background: var(--brand);
color: #fff;
font-size: 11px;
font-weight: 700;
padding: 2px 6px;
border-radius: 4px;
text-transform: uppercase;
letter-spacing: 0.4px;
animation: fadeInOut 2s ease forwards;
pointer-events: none;
white-space: nowrap;
order: -1;
}
@keyframes fadeInOut {
0% {
opacity: 0;
transform: translateY(4px);
}
15% {
opacity: 1;
transform: translateY(0);
}
85% {
opacity: 1;
transform: translateY(0);
}
100% {
opacity: 0;
transform: translateY(-4px);
}
}
.header-action-btn i {
width: 16px;
height: 16px;