Skip to content

Instantly share code, notes, and snippets.

@coetry
Created August 27, 2017 16:53
Show Gist options
  • Save coetry/c50e269504034fa99e67c0d3e9f573e1 to your computer and use it in GitHub Desktop.
Save coetry/c50e269504034fa99e67c0d3e9f573e1 to your computer and use it in GitHub Desktop.
(defn 3-col-grid-container
"Takes a vector of child components
and makes wraps them in a grid"
[children]
[:div {:style {:display "grid"
:grid-template-columns "1fr 1fr 1fr"
:grid-gap "40px 40px"
:top "0"
:bottom "0"
:height "100vh"
:margin"5% 5% 5% 5%"}}
(for [child children]
child)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment