From e5ad37620f8f77763514a4934805a7e14574832a Mon Sep 17 00:00:00 2001 From: Gabriel Giovanini Date: Sun, 23 Jun 2019 13:21:41 +0200 Subject: Update to layout --- src/genpass/core.cljs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/genpass/core.cljs b/src/genpass/core.cljs index c65714f..186eaeb 100644 --- a/src/genpass/core.cljs +++ b/src/genpass/core.cljs @@ -5,16 +5,22 @@ (def password (r/atom (genpwd))) -(defn home-page [] +(defn main-section [] [:div.columns>div.column [:div.field>div.control>input.input.is-primary {:type "text" :value @password}] [:div.field>div.control>input.button.is-primary {:value "Generate" - :type "button" + :type "button" :on-click #(reset! password (genpwd))}]]) +(defn home-page [] + [:div + [:section.section>div.container + (main-section)] + [:footer.footer>div.content.has-text-centered>p "Link"]]) + (defn mount-root [] (r/render [home-page] (.getElementById js/document "app"))) -- cgit v1.2.3