17 lines
608 B
Plaintext
17 lines
608 B
Plaintext
<ul class="flex flex-column align-start gap-half margin-none unpad">
|
|
<%= form.collection_check_boxes \
|
|
:subscribed_actions,
|
|
webhook_action_options,
|
|
:first,
|
|
:last do |item| %>
|
|
<li class="list-style-none margin-none flex align-center gap">
|
|
<label class="switch toggler__visible-when-off flex-item-no-shrink txt-x-small">
|
|
<%= item.check_box(class: "switch__input") %>
|
|
<span class="switch__btn round"></span>
|
|
<span class="for-screen-reader"><%= item.text %></span>
|
|
</label>
|
|
<span><%= item.text %></span>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|