mirror of
https://github.com/elder-plinius/P4RS3LT0NGV3.git
synced 2026-07-10 14:48:40 +02:00
Fix emoji encoding and improve universal decoder
This commit is contained in:
@@ -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); }
|
||||
}
|
||||
Reference in New Issue
Block a user