diff options
author | Matthew Lemon <y@yulqen.org> | 2023-12-17 20:08:47 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-12-17 20:08:47 +0000 |
commit | a6929cddd59e6f2a1df5b722194d84e8fb68b9d4 (patch) | |
tree | 2ecd0fbcea2e3185175d46d2a55619d61466c9b9 | |
parent | a9fdcbc3e7fb43be9b5b25b56c80d11cec970f79 (diff) |
Removed bootstrap styling....
-rw-r--r-- | app/views/events/_form.html.erb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/events/_form.html.erb b/app/views/events/_form.html.erb index da7f932..4c718ae 100644 --- a/app/views/events/_form.html.erb +++ b/app/views/events/_form.html.erb @@ -12,16 +12,16 @@ <% end %> <div> - <%= form.label :date, style: "display: block", class: "form-label" %> - <%= form.date_field :date, class: "form-control" %> + <%= form.label :date, style: "display: block" %> + <%= form.date_field :date %> </div> <div> - <%= form.label :name, style: "display: block", class: "form-label" %> - <%= form.text_field :name, class: "form-control" %> + <%= form.label :name, style: "display: block" %> + <%= form.text_field :name %> </div> <div> - <%= form.submit class: "btn btn-primary mt-2"%> + <%= form.submit style: "background: green; color: white; margin-top: 2px;"%> </div> <% end %> |