From 12f3b1b10a500f5ee01e7c1596bdcd13f1d468d8 Mon Sep 17 00:00:00 2001 From: Jamos Tay Date: Tue, 14 Feb 2017 22:24:42 +0800 Subject: [PATCH] Remove extra close brace --- .../01-responsive-web-design/applied-visual-design.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/01-responsive-web-design/applied-visual-design.json b/seed/challenges/01-responsive-web-design/applied-visual-design.json index 8874d088a9..b576fa39c5 100644 --- a/seed/challenges/01-responsive-web-design/applied-visual-design.json +++ b/seed/challenges/01-responsive-web-design/applied-visual-design.json @@ -1882,7 +1882,7 @@ "description": [ "The transform property has a variety of functions that lets you scale, move, rotate, skew, etc., your elements. When used with pseudo-classes such as :hover that specify a certain state of an element, the transform property can easily add interactivity to your elements.", "Here's an example to scale the paragraph elements to 2.1 times their original size when a user hovers over them:", - "
p:hover {
transform: scale(2.1);}
}
", + "
p:hover {
transform: scale(2.1);
}
", "
", "Add a CSS rule for the hover state of the div and use the transform property to scale the div element to 1.1 times its original size when a user hovers over it." ],