💫 Animate the confirmation message

This commit is contained in:
Philipp Stracker 2025-02-07 16:50:46 +01:00
parent b985059181
commit 877c7bbe3b
No known key found for this signature in database
2 changed files with 29 additions and 2 deletions

View file

@ -134,9 +134,21 @@ $margin_bottom: 48px;
}
.ppcp-r-navbar-notice {
// Theming.
background: var(--navbar-notice-background);
color: var(--navbar-notice-color);
// Animation.
transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
opacity: 0;
transform: translateY(-10px);
&.ppcp--animating {
opacity: 1;
transform: translateY(0);
}
// Styling.
position: absolute;
top: 48px;
right: 0;