BUG: mobile layout issues - dropping grid for now (#11)

This commit is contained in:
Matthew Ryan Dillon 2020-06-21 16:41:56 -07:00 committed by GitHub
parent 673d096f53
commit 34d167e040
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 53 additions and 70 deletions

View file

@ -2,7 +2,7 @@
<html lang="en">
<head>
<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>
<link rel="stylesheet" href="<%= Routes.static_path(@conn, "/css/app.css") %>"/>
<%= csrf_meta_tag() %>

View file

@ -1,5 +1 @@
<div class="columns">
<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>
<%= render "form.html", Map.put(assigns, :action, Routes.task_path(@conn, :update, @task)) %>

View file

@ -1,8 +1,6 @@
<div class="columns">
<div class="column table-container">
<%= link "new", to: Routes.task_path(@conn, :new), class: "button is-dark" %>
<%= 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;">
<thead>
<tr>
@ -28,6 +26,4 @@
<% end %>
</tbody>
</table>
</div>
</div>
</div>

View file

@ -1,5 +1 @@
<div class="columns">
<div class="column is-three-fifths is-offset-one-fifth">
<%= render "form.html", Map.put(assigns, :action, Routes.task_path(@conn, :create)) %>
</div>
</div>
<%= render "form.html", Map.put(assigns, :action, Routes.task_path(@conn, :create)) %>

View file

@ -1,7 +1,4 @@
<div class="columns">
<div class="column is-three-fifths is-offset-one-fifth">
<div class="box">
<div class="box">
<%= if not is_nil(@task.due_at) or is_nil(@task.filed_at) do %>
<div class="tags">
<%= 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?"] %>
</p>
</div>
</div>
</div>
</div>