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 --- public/index.html | 19 +++++++++---------- src/genpass/core.cljs | 10 ++++++++-- 2 files changed, 17 insertions(+), 12 deletions(-) diff --git a/public/index.html b/public/index.html index b907717..02fedac 100644 --- a/public/index.html +++ b/public/index.html @@ -1,16 +1,15 @@ - - + - - -
-

Loading Pathfinder Tools...

-
- - - + + +
+

Loading Pathfinder Tools...

+
+ + + 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