From 91aefdba246e8e2125b93dcff1ee096585d126d7 Mon Sep 17 00:00:00 2001 From: ming Date: Mon, 28 Apr 2025 15:35:21 +0900 Subject: [PATCH] =?UTF-8?q?=EC=8A=A4=EC=BC=80=EC=A4=84=EB=9F=AC=20edit=20v?= =?UTF-8?q?iew=20=EB=B0=98=EC=9D=91=ED=98=95=20=EB=94=94=ED=85=8C=EC=9D=BC?= =?UTF-8?q?=20=EC=88=98=EC=A0=95=202?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/schedules/schedule_edit.html.erb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/views/schedules/schedule_edit.html.erb b/app/views/schedules/schedule_edit.html.erb index d768f3b..fa98b72 100644 --- a/app/views/schedules/schedule_edit.html.erb +++ b/app/views/schedules/schedule_edit.html.erb @@ -15,14 +15,14 @@
시간
-
+
<%= select_tag "schedule[#{s.id}][hour]", options_for_select((0..23).map { |h| [h.to_s.rjust(2, '0'), h] }, s.hour), - class: "select-style text-white min-w-[68px]" %> + class: "select-style text-white min-w-[68px] h-full" %>
:
<%= number_field_tag "schedule[#{s.id}][minute]", s.minute, min: 0, max: 59, step: 1, inputmode: "decimal", - class: "input-style min-w-[68px]" %> + class: "input-style min-w-[68px] h-full" %>
@@ -30,7 +30,7 @@
온도
- <%= number_field_tag "schedule[#{s.id}][temperature]", s.temperature, step: "0.1", inputmode: "decimal", class: "input-style min-w-[78px]" %> + <%= number_field_tag "schedule[#{s.id}][temperature]", s.temperature, step: "0.1", inputmode: "decimal", class: "input-style min-w-[78px] h-full" %>
°C
@@ -52,7 +52,7 @@
 
<%= link_to schedule_path(s), data: { turbo_method: :delete, turbo_confirm: "정말 삭제하시겠습니까?" }, - class: "btn bg-danger text-sm flex items-center px-2 py-0 my-2 lg:px-4 lg:py-2 lg:my-0" do %> + class: "btn bg-danger text-sm flex items-center px-2 py-0 my-1.5 lg:px-4 lg:py-1.5 lg:my-0" do %>
<% end %>