Previews

No matching results.

x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="Polaris-LegacyCard Polaris-LegacyCard--withoutTitle">
<div class="Polaris-LegacyCard__Section Polaris-LegacyCard__Section--borderBottom">
<p>Border bottom</p>
</div>
<div class="Polaris-LegacyCard__Section Polaris-LegacyCard__Section--borderBottom">
<p>Border bottom 2</p>
</div>
<div class="Polaris-LegacyCard__Section">
<p>Regular section</p>
</div>
<div class="Polaris-LegacyCard__Section Polaris-LegacyCard__Section--borderTop">
<p>Border top</p>
</div>
<div class="Polaris-LegacyCard__Section Polaris-LegacyCard__Section--borderTop">
<p>Border top 2</p>
</div>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<%= polaris_card do |card| %>
<% card.with_section(border_bottom: true) do %>
<p>Border bottom</p>
<% end %>
<% card.with_section(border_bottom: true) do %>
<p>Border bottom 2</p>
<% end %>
<% card.with_section do %>
<p>Regular section</p>
<% end %>
<% card.with_section(border_top: true) do %>
<p>Border top</p>
<% end %>
<% card.with_section(border_top: true) do %>
<p>Border top 2</p>
<% end %>
<% end %>