From 84f6dfef4fe9b0c6a89794f2b97c0cfa7c4b411d Mon Sep 17 00:00:00 2001 From: Neil Fraser Date: Wed, 5 Oct 2022 06:38:32 +0200 Subject: [PATCH] Fix: `//` isn't a legal comment in CSS (#6467) --- core/css.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css.ts b/core/css.ts index 4d7917d2d..81b2e15a9 100644 --- a/core/css.ts +++ b/core/css.ts @@ -160,7 +160,7 @@ let content = ` } .blocklyDropDownContent { - max-height: 300px; // @todo: spec for maximum height. + max-height: 300px; /* @todo: spec for maximum height. */ overflow: auto; overflow-x: hidden; position: relative;