Previews

No matching results.

x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<div class="Polaris-LegacyCard">
<div class="Polaris-LegacyCard__Header">
<h2 class="Polaris-Text--root Polaris-Text--headingMd Polaris-Text--semibold">
Online store dashboard
</h2>
</div>
<div class="Polaris-LegacyCard__Section">
<div class="Polaris-TextContainer">
<div dismissible="true" tabindex="0" role="status" class="Polaris-Banner Polaris-Banner--withinContentContainer">
<div style="--pc-box-border-color: transparent;--pc-box-border-style: solid;--pc-box-padding-inline-end-xs: var(--p-space-4)" class="Polaris-Box">
<span class="Polaris-Icon Polaris-Icon--colorBase Polaris-Icon--applyColor">
<svg viewbox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" class="Polaris-Icon__Svg" focusable="false" aria-hidden="true"><path d="M10 14a.75.75 0 0 1-.75-.75v-3.5a.75.75 0 0 1 1.5 0v3.5a.75.75 0 0 1-.75.75Z"></path><path d="M9 7a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z"></path><path fill-rule="evenodd" d="M17 10a7 7 0 1 1-14 0 7 7 0 0 1 14 0Zm-1.5 0a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0Z"></path></svg>
</span>
</div>
<div class="Polaris-Banner__ContentWrapper">
<div style="--pc-box-border-color: transparent;--pc-box-border-style: solid;--pc-box-padding-block-end-xs: var(--p-space-05);--pc-box-padding-block-start-xs: var(--p-space-05)" class="Polaris-Box">
<p>
Use your finance report to get detailed information about your business.<br>
<a href="#" data-polaris-unstyled="true" class="Polaris-Link Polaris-Link--monochrome">Let us know what you think</a>
</p>
</div>
</div>
</div>
<p>View a summary of your online store’s performance.</p>
</div>
</div>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
<%= polaris_card(title: "Online store dashboard") do %>
<%= polaris_text_container do %>
<%= polaris_banner(dismissible: true, within: :container) do %>
<p>
Use your finance report to get detailed information about your business.<br>
<%= polaris_link(url: "#", monochrome: true) { "Let us know what you think" } %>
</p>
<% end %>
<p>View a summary of your online store’s performance.</p>
<% end %>
<% end %>