Add some styling classes in the table

This commit is contained in:
karemarsy 2020-04-15 13:05:21 +02:00
parent 5793b71ae6
commit e26da7dfa5

View File

@ -5,7 +5,11 @@
<p> <p>
<%= link_to 'Google spreadsheet', @form.spreadsheet_url %> <%= link_to 'Google spreadsheet', @form.spreadsheet_url %>
</p> </p>
<table> <div class="section">
<div class="columns">
<div class="column is-half is-offset-one-quarter">
<table class="table is-fullwidth">
<thead> <thead>
<tr> <tr>
<% @form.spreadsheet_headers.each do |value| %> <% @form.spreadsheet_headers.each do |value| %>
@ -23,3 +27,6 @@
<% end %> <% end %>
</tbody> </tbody>
</table> </table>
</div>
</div>
</div>