diff --git a/Text/IndentToBrace.hs b/Text/IndentToBrace.hs
--- a/Text/IndentToBrace.hs
+++ b/Text/IndentToBrace.hs
@@ -97,7 +97,7 @@
     tell' $
         case () of
             ()
-                | not $ all isBlank inside -> "{"
+                | not $ all isBlank inside -> " {"
                 | ";" `isInfixOf` lineContent l -> ""
                 | otherwise -> ";"
     tell' $ replicate count '}'
diff --git a/shakespeare.cabal b/shakespeare.cabal
--- a/shakespeare.cabal
+++ b/shakespeare.cabal
@@ -1,5 +1,5 @@
 name:            shakespeare
-version:         2.0.1
+version:         2.0.1.1
 license:         MIT
 license-file:    LICENSE
 author:          Michael Snoyman <michael@snoyman.com>
diff --git a/test/Text/Shakespeare/CssSpec.hs b/test/Text/Shakespeare/CssSpec.hs
--- a/test/Text/Shakespeare/CssSpec.hs
+++ b/test/Text/Shakespeare/CssSpec.hs
@@ -468,6 +468,23 @@
             }
         |]
 
+    describe "font-face #139" $ do
+        it "lucius" $
+            celper "@font-face{font-family:myFirstFont;src:url(sansation_light.woff)}"
+            [lucius|
+                @font-face {
+                    font-family: myFirstFont;
+                    src: url(sansation_light.woff);
+                }
+            |]
+        it "cassius" $
+            celper "@font-face{font-family:myFirstFont;src:url(sansation_light.woff)}"
+            [cassius|
+                @font-face
+                    font-family: myFirstFont
+                    src: url(sansation_light.woff)
+            |]
+
 data Url = Home | Sub SubUrl
 data SubUrl = SubUrl
 render :: Url -> [(Text, Text)] -> Text
