From 34d167e0402d05e57cf45db02de077a722a9fbae Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Sun, 21 Jun 2020 16:41:56 -0700 Subject: [PATCH] BUG: mobile layout issues - dropping grid for now (#11) --- .../templates/layout/root.html.leex | 2 +- lib/planner_web/templates/task/edit.html.eex | 6 +- lib/planner_web/templates/task/index.html.eex | 58 +++++++++---------- lib/planner_web/templates/task/new.html.eex | 6 +- lib/planner_web/templates/task/show.html.eex | 51 ++++++++-------- 5 files changed, 53 insertions(+), 70 deletions(-) diff --git a/lib/planner_web/templates/layout/root.html.leex b/lib/planner_web/templates/layout/root.html.leex index 79caea9..84f3ccd 100644 --- a/lib/planner_web/templates/layout/root.html.leex +++ b/lib/planner_web/templates/layout/root.html.leex @@ -2,7 +2,7 @@ - + planner "/> <%= csrf_meta_tag() %> diff --git a/lib/planner_web/templates/task/edit.html.eex b/lib/planner_web/templates/task/edit.html.eex index 49a892a..3e2c4ab 100644 --- a/lib/planner_web/templates/task/edit.html.eex +++ b/lib/planner_web/templates/task/edit.html.eex @@ -1,5 +1 @@ -
-
- <%= render "form.html", Map.put(assigns, :action, Routes.task_path(@conn, :update, @task)) %> -
-
+<%= render "form.html", Map.put(assigns, :action, Routes.task_path(@conn, :update, @task)) %> diff --git a/lib/planner_web/templates/task/index.html.eex b/lib/planner_web/templates/task/index.html.eex index 06f68e5..135a8f7 100644 --- a/lib/planner_web/templates/task/index.html.eex +++ b/lib/planner_web/templates/task/index.html.eex @@ -1,33 +1,29 @@ -
-
- <%= link "new", to: Routes.task_path(@conn, :new), class: "button is-dark" %> +<%= link "new", to: Routes.task_path(@conn, :new), class: "button is-dark" %> -
- - - - - - - - <%= for task <- @tasks do %> - - - - <% end %> - -
task
- <%= if not is_nil(task.due_at) do %> -
- - due: <%= task.due_at %> - -
- <% end %> - <%= link to: Routes.task_path(@conn, :show, task.id), class: "has-text-black" do %> - <%= task.value %> - <% end %> -
-
-
+
+ + + + + + + + <%= for task <- @tasks do %> + + + + <% end %> + +
task
+ <%= if not is_nil(task.due_at) do %> +
+ + due: <%= task.due_at %> + +
+ <% end %> + <%= link to: Routes.task_path(@conn, :show, task.id), class: "has-text-black" do %> + <%= task.value %> + <% end %> +
diff --git a/lib/planner_web/templates/task/new.html.eex b/lib/planner_web/templates/task/new.html.eex index fd05e9e..3eb812a 100644 --- a/lib/planner_web/templates/task/new.html.eex +++ b/lib/planner_web/templates/task/new.html.eex @@ -1,5 +1 @@ -
-
- <%= render "form.html", Map.put(assigns, :action, Routes.task_path(@conn, :create)) %> -
-
+<%= render "form.html", Map.put(assigns, :action, Routes.task_path(@conn, :create)) %> diff --git a/lib/planner_web/templates/task/show.html.eex b/lib/planner_web/templates/task/show.html.eex index 708ced0..e156f00 100644 --- a/lib/planner_web/templates/task/show.html.eex +++ b/lib/planner_web/templates/task/show.html.eex @@ -1,31 +1,26 @@ -
-
-
- - <%= if not is_nil(@task.due_at) or is_nil(@task.filed_at) do %> -
- <%= if not is_nil(@task.due_at) do %>due: <%= @task.due_at %><% end %> - <%= if is_nil(@task.filed_at) do %>unfiled<% end %> -
- <% end %> - -

- <%= @task.value %> -

- -
- updated: <%= @task.updated_at %> - created: <%= @task.inserted_at %> -
- -
-

- <%= link "edit", to: Routes.task_path(@conn, :edit, @task.id), class: "button is-dark" %> -

-

- <%= link "delete", to: Routes.task_path(@conn, :delete, @task.id), class: "button is-dark", method: :delete, data: [confirm: "are you sure?"] %> -

-
+
+ <%= if not is_nil(@task.due_at) or is_nil(@task.filed_at) do %> +
+ <%= if not is_nil(@task.due_at) do %>due: <%= @task.due_at %><% end %> + <%= if is_nil(@task.filed_at) do %>unfiled<% end %>
+ <% end %> + +

+ <%= @task.value %> +

+ +
+ updated: <%= @task.updated_at %> + created: <%= @task.inserted_at %> +
+ +
+

+ <%= link "edit", to: Routes.task_path(@conn, :edit, @task.id), class: "button is-dark" %> +

+

+ <%= link "delete", to: Routes.task_path(@conn, :delete, @task.id), class: "button is-dark", method: :delete, data: [confirm: "are you sure?"] %> +