fix: Fixed incorrect dot possition and scaling, b=no-bug, c=common, workspaces

This commit is contained in:
mr. m
2025-12-08 01:40:53 +01:00
parent 832b0c4fe3
commit 85d52d15c2
3 changed files with 13 additions and 8 deletions

View File

@@ -18,13 +18,13 @@
@keyframes zen-theme-picker-dot-animation {
from {
transform: scale(0.8) translate(-25%, -25%);
transform: scale(0.8) translate(-50%, -50%);
}
50% {
transform: scale(1.2) translate(-25%, -25%);
transform: scale(1.2) translate(-50%, -50%);
}
to {
transform: scale(1) translate(-25%, -25%);
transform: scale(1) translate(-50%, -50%);
}
}