We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 839fb1c commit 675d38dCopy full SHA for 675d38d
1 file changed
cmd/css.go
@@ -47,16 +47,15 @@ func (c *Command) mediaProperty(name string) string {
47
}
48
49
if m.MinWidth != "" {
50
- return "@media (min-width: " + m.MinWidth + "){"
+ return "@media(min-width: " + m.MinWidth + "){"
51
52
53
if m.MaxWidth != "" {
54
- return "@media (max-width: " + m.MaxWidth + "){"
+ return "@media(max-width: " + m.MaxWidth + "){"
55
56
57
58
log.Panic(name + " media not found")
59
60
return ""
61
62
-
0 commit comments