diff options
author | Joris | 2020-08-08 21:04:28 +0200 |
---|---|---|
committer | Joris | 2020-08-08 21:04:28 +0200 |
commit | 38e42723a916b7d5c2a15e514b3f3e6dcab398dd (patch) | |
tree | 1b7415ae64ac9768b12fc4d543ee61d615d11e7e /src/View/Layout.ml | |
parent | 3e39f97d844dbe0ff5f57e3977bc220d366d4c0e (diff) |
Propose already defined colors in the form
Diffstat (limited to 'src/View/Layout.ml')
-rw-r--r-- | src/View/Layout.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/View/Layout.ml b/src/View/Layout.ml index b217f0b..db1e234 100644 --- a/src/View/Layout.ml +++ b/src/View/Layout.ml @@ -1,9 +1,9 @@ let section attrs content = H.div - (Js.Array.concat [| HA.class_ "g-Layout__Section" |] attrs) + (HA.concat attrs [| HA.class_ "g-Layout__Section" |]) content let line attrs content = H.div - (Js.Array.concat [| HA.class_ "g-Layout__Line" |] attrs) + (HA.concat attrs [| HA.class_ "g-Layout__Line" |]) content |