diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/genpass/core.cljs | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/genpass/core.cljs b/src/genpass/core.cljs index 1e71f76..6ae0f4a 100644 --- a/src/genpass/core.cljs +++ b/src/genpass/core.cljs @@ -6,14 +6,18 @@ (def password (r/atom (genpwd))) (defn main-section [] - [:div.columns>div.column + [:div [:div.field>div.control>input.input.is-primary {:type "text" :value @password}] - [:div.field>div.control>input.button.is-primary - {:value "Generate" - :type "button" - :on-click #(reset! password (genpwd))}]]) + [:div.field.is-grouped + [:div.control>input.button.is-primary + {:value "Generate" + :type "button" + :on-click #(reset! password (genpwd))}] + [:div.control>input.button.is-primary.is-success + {:value "Copy" + :type "button"}]]]) (defn home-page [] [:div |