BUG: mobile layout issues - dropping grid for now (#11)
This commit is contained in:
parent
673d096f53
commit
34d167e040
5 changed files with 53 additions and 70 deletions
|
@ -2,7 +2,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8"/>
|
<meta charset="utf-8"/>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>planner</title>
|
<title>planner</title>
|
||||||
<link rel="stylesheet" href="<%= Routes.static_path(@conn, "/css/app.css") %>"/>
|
<link rel="stylesheet" href="<%= Routes.static_path(@conn, "/css/app.css") %>"/>
|
||||||
<%= csrf_meta_tag() %>
|
<%= csrf_meta_tag() %>
|
||||||
|
|
|
@ -1,5 +1 @@
|
||||||
<div class="columns">
|
<%= render "form.html", Map.put(assigns, :action, Routes.task_path(@conn, :update, @task)) %>
|
||||||
<div class="column is-three-fifths is-offset-one-fifth">
|
|
||||||
<%= render "form.html", Map.put(assigns, :action, Routes.task_path(@conn, :update, @task)) %>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
<div class="columns">
|
<%= link "new", to: Routes.task_path(@conn, :new), class: "button is-dark" %>
|
||||||
<div class="column table-container">
|
|
||||||
<%= link "new", to: Routes.task_path(@conn, :new), class: "button is-dark" %>
|
|
||||||
|
|
||||||
<div class="table-container">
|
<div class="table-container">
|
||||||
<table class="table is-striped is-hoverable is-fullwidth" style="table-layout: fixed;">
|
<table class="table is-striped is-hoverable is-fullwidth" style="table-layout: fixed;">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -28,6 +26,4 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,5 +1 @@
|
||||||
<div class="columns">
|
<%= render "form.html", Map.put(assigns, :action, Routes.task_path(@conn, :create)) %>
|
||||||
<div class="column is-three-fifths is-offset-one-fifth">
|
|
||||||
<%= render "form.html", Map.put(assigns, :action, Routes.task_path(@conn, :create)) %>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
<div class="columns">
|
<div class="box">
|
||||||
<div class="column is-three-fifths is-offset-one-fifth">
|
|
||||||
<div class="box">
|
|
||||||
|
|
||||||
<%= if not is_nil(@task.due_at) or is_nil(@task.filed_at) do %>
|
<%= if not is_nil(@task.due_at) or is_nil(@task.filed_at) do %>
|
||||||
<div class="tags">
|
<div class="tags">
|
||||||
<%= if not is_nil(@task.due_at) do %><span class="tag is-warning">due: <%= @task.due_at %></span><% end %>
|
<%= if not is_nil(@task.due_at) do %><span class="tag is-warning">due: <%= @task.due_at %></span><% end %>
|
||||||
|
@ -26,6 +23,4 @@
|
||||||
<%= link "delete", to: Routes.task_path(@conn, :delete, @task.id), class: "button is-dark", method: :delete, data: [confirm: "are you sure?"] %>
|
<%= link "delete", to: Routes.task_path(@conn, :delete, @task.id), class: "button is-dark", method: :delete, data: [confirm: "are you sure?"] %>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue