Skip to content

Commit

Permalink
Add some more spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielJackson-Oslo committed Sep 26, 2024
1 parent 072d3ea commit a732f4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/views/spaces/index/_search_form_fields.html.erb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<%# locals: (form:) %>
<div class="mb-8">
<%= form.label t("space_filter.title"), for: :search_for_title, class: "text-xl font-bold" %>
<%= form.label t("space_filter.title"), for: :search_for_title, class: "text-xl font-bold my-4" %>
<div class="mt-2">
<%= form.text_field :search_for_title,
value: params[:search_for_title],
Expand All @@ -10,7 +10,7 @@
</div>

<div class="mb-8">
<%= form.label t("space_filter.location"), for: "locationInput", class: "text-xl font-bold" %>
<%= form.label t("space_filter.location"), for: "locationInput", class: "text-xl font-bold my-4" %>
<div class="mt-2">
<div data-mapbox-target="location">
<select id="locationInput"
Expand All @@ -27,7 +27,7 @@
</div>

<div class="my-8">
<h3 class="text-xl font-bold mt-4">
<h3 class="text-xl font-bold my-4">
<%= Facility.model_name.human(count: 2).capitalize %>
</h3>
<div class="">
Expand Down Expand Up @@ -74,7 +74,7 @@
</div>

<div class="my-8">
<h3 class="text-xl font-bold mt-4"><%= SpaceType.model_name.human(count: @filterable_space_types.count).capitalize %></h3>
<h3 class="text-xl font-bold my-4"><%= SpaceType.model_name.human(count: @filterable_space_types.count).capitalize %></h3>
<div class="mt-2">
<% @filterable_space_types.each do |space_type| %>
<%= form.label "space_type_#{space_type.id}", class: "flex gap-2 my-1" do %>
Expand Down

0 comments on commit a732f4e

Please sign in to comment.