refactor: replace radix ui mentions with base ui

This commit is contained in:
Emil
2026-07-21 12:44:04 +02:00
parent 6bf24434f7
commit 86cf9f7d91
6 changed files with 7 additions and 14 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ A single markdown table. One row per issue. Never a "Before:/After:" list.
| `transition: all 300ms` | `transition: transform 200ms ease-out` | Specify exact properties; `all` animates unintended properties off-GPU |
| `transform: scale(0)` | `transform: scale(0.95); opacity: 0` | Nothing appears from nothing — `scale(0)` looks like it came from nowhere |
| `ease-in` on dropdown | `ease-out` + custom curve | `ease-in` delays the moment the user watches most; feels sluggish |
| `transform-origin: center` on popover | `var(--radix-popover-content-transform-origin)` | Popovers scale from their trigger, not center (modals are exempt) |
| `transform-origin: center` on popover | `var(--transform-origin)` (Base UI) | Popovers scale from their trigger, not center (modals are exempt) |
### Part 2 — Verdict (REQUIRED)