From e953d9a01a9d825d5a65c36dfb7a1f6586860993 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien <567105+nstepien@users.noreply.github.com> Date: Fri, 5 Jan 2024 17:33:45 +0000 Subject: [PATCH] Remove `:is()` (#3420) --- .vscode/settings.json | 2 +- website/demos/Animation.tsx | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 52a602f805..438daedca0 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,6 @@ { "editor.codeActionsOnSave": { - "source.fixAll": true + "source.fixAll": "explicit" }, "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, diff --git a/website/demos/Animation.tsx b/website/demos/Animation.tsx index 5e7d14a82d..6de229a746 100644 --- a/website/demos/Animation.tsx +++ b/website/demos/Animation.tsx @@ -15,7 +15,8 @@ const rangeClassname = css` const transitionClassname = css` transition: grid-template-rows 0.5s ease; - > :is(.rdg-header-row, .rdg-row) { + > .rdg-header-row, + > .rdg-row { transition: line-height 0.5s ease; } `;