- <%= form_tag update_org_credits_admin_organization_path(@organization), method: :patch, class: "form-inline justify-content-between mb-2" do %>
-
+ <%= form_tag update_org_credits_admin_organization_path(@organization), method: :patch, class: "flex justify-content-between mb-2" do %>
+
<%= hidden_field_tag :credit_action, :add %>
- <%= number_field_tag :credits, nil, in: 1...100_000, required: true, class: "form-control mr-3", size: 5, aria: { label: "Credits" } %>
- <%= text_field_tag :note, "", placeholder: "Why are you adding these credits?", size: 50, required: true, class: "form-control mr-3", aria: { label: "Reason" } %>
+ <%= number_field_tag :credits, nil, in: 1...100_000, required: true, class: "crayons-textfield w-auto mr-3", size: 5, aria: { label: "Credits" } %>
+ <%= text_field_tag :note, "", placeholder: "Why are you adding these credits?", size: 50, required: true, class: "crayons-textfield w-auto mr-3", aria: { label: "Reason" } %>
- <%= submit_tag "Add Org Credits", class: "btn btn-primary" %>
+ <%= submit_tag "Add Org Credits", class: "crayons-btn" %>
<% end %>
<% if current_credits.positive? %>
- <%= form_tag update_org_credits_admin_organization_path(@organization), method: :patch, class: "form-inline justify-content-between mb-2" do %>
-
diff --git a/app/views/admin/podcasts/edit.html.erb b/app/views/admin/podcasts/edit.html.erb
index 6ff27db71..a955d5bbf 100644
--- a/app/views/admin/podcasts/edit.html.erb
+++ b/app/views/admin/podcasts/edit.html.erb
@@ -29,7 +29,7 @@
<% if @podcast.owners.present? %>
<% @podcast.owners.select(:id, :username).each do |owner| %>
- <%= form_for @podcast, url: "#", html: { method: :delete, class: "form-inline" } do |f| %>
+ <%= form_for @podcast, url: "#", html: { method: :delete, class: "flex" } do |f| %>
-
<%= link_to "@#{owner.username}", user_url(owner), target: "_blank", rel: :noopener %>
<%# f.hidden_field :user_id, value: owner.id %>
diff --git a/app/views/admin/podcasts/index.html.erb b/app/views/admin/podcasts/index.html.erb
index ba951a940..dfe7f224f 100644
--- a/app/views/admin/podcasts/index.html.erb
+++ b/app/views/admin/podcasts/index.html.erb
@@ -1,7 +1,7 @@
-<%= form_tag(admin_podcasts_path, method: "get", class: "mb-6") do %>
-