Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/theme/Root.module.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* Base styles for the toast container */
.toastContainer {
position: fixed;
top: 20px;
top: 30px;
right: 24px;
border: 1px solid oklch(0.69 0 0);
border-radius: 8px; /* Docusaurus --radius var is often 8px */
Expand Down Expand Up @@ -94,7 +94,7 @@
@keyframes slideDownFadeOut {
0% {
opacity: 0;
transform: translateY(-10px) scale(0.95);
transform: translateY(10px) scale(0.95);
}
10%,
90% {
Expand All @@ -103,6 +103,6 @@
}
100% {
opacity: 0;
transform: translateY(-10px) scale(0.95);
transform: translateY(10px) scale(0.95);
}
}
Loading