Created
August 27, 2017 16:53
-
-
Save coetry/c50e269504034fa99e67c0d3e9f573e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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