Fix emoji encoding and improve universal decoder

This commit is contained in:
EP
2025-03-09 18:45:56 -04:00
parent 1637dd3603
commit f65235c5d2
5 changed files with 227 additions and 35 deletions
+34
View File
@@ -0,0 +1,34 @@
/* Copy notification styles */
.copy-notification {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #25282c;
color: #00FF41;
padding: 10px 20px;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
z-index: 1000;
display: flex;
align-items: center;
gap: 10px;
animation: fade-in 0.3s ease-in-out;
}
.copy-notification.error {
color: #ff4141;
}
.copy-notification.fade-out {
animation: fade-out 0.3s ease-in-out forwards;
}
@keyframes fade-in {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-out {
from { opacity: 1; transform: translateY(0); }
to { opacity: 0; transform: translateY(20px); }
}