We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a65514a commit f3bf584Copy full SHA for f3bf584
src/Css/Structure/Output.elm
@@ -60,14 +60,14 @@ prettyPrintDeclaration declaration =
60
MediaRule mediaQueries styleBlocks ->
61
let
62
blocks =
63
- (List.map (indent << prettyPrintStyleBlock) styleBlocks)
+ (List.map (indentLines << prettyPrintStyleBlock) styleBlocks)
64
|> String.join "\n\n"
65
66
query =
67
(List.map (\(MediaQuery str) -> str) mediaQueries)
68
|> String.join " "
69
in
70
- "@media " ++ query ++ " {\n" ++ indentLines blocks ++ "\n}"
+ "@media " ++ query ++ " {\n" ++ blocks ++ "\n}"
71
72
Keyframes name steps ->
73
0 commit comments