Skip to content

Commit c1e5e65

Browse files
Fix responsive columns and rows (#24)
1 parent 62e084c commit c1e5e65

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Lumi/Components/Column.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ styles = jss
4848
, display: "flex"
4949
, flexDirection: "column"
5050

51-
, "& @media (max-width: 860px)":
51+
, "@media (max-width: 860px)":
5252
{ flexDirection: "row"
5353
}
5454
}

src/Lumi/Components/Row.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ styles = jss
4242
, display: "flex"
4343
, flexDirection: "row"
4444

45-
, "& @media (max-width: 860px)":
45+
, "@media (max-width: 860px)":
4646
{ flexDirection: "column"
4747
}
4848
}

0 commit comments

Comments
 (0)