From 5ffbcabc7dc73a023f33b0fbc50c06f84864c030 Mon Sep 17 00:00:00 2001 From: atomiks Date: Sat, 17 Mar 2018 18:58:51 +1000 Subject: [PATCH] fix class name --- snippets/height-transition.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/height-transition.md b/snippets/height-transition.md index dbe72c4b6..ddea61252 100644 --- a/snippets/height-transition.md +++ b/snippets/height-transition.md @@ -20,7 +20,7 @@ Transitions an element's height from `0` to `auto` when its height is unknown. max-height: 0; } -.target:hover > .el { +.trigger:hover > .el { max-height: var(--max-height); } ```