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
29
30
31
32
33
34
35
36
37
38
39
<div class="Polaris-LegacyCard"> <div class="Polaris-CalloutCard__Container Polaris-CalloutCard--hasDismiss"> <div class="Polaris-CalloutCard__Dismiss"> <a href="#" data-controller="paper-button" class="Polaris-Button Polaris-Button--plain Polaris-Button--iconOnly"> <span class="Polaris-Button__Content"> <div class="Polaris-Button__Icon"> <span class="Polaris-Icon"> <svg viewbox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" class="Polaris-Icon__Svg" focusable="false" aria-hidden="true"><path d="M6.707 5.293a1 1 0 0 0-1.414 1.414l3.293 3.293-3.293 3.293a1 1 0 1 0 1.414 1.414l3.293-3.293 3.293 3.293a1 1 0 0 0 1.414-1.414l-3.293-3.293 3.293-3.293a1 1 0 0 0-1.414-1.414l-3.293 3.293-3.293-3.293Z"></path></svg> </span> </div> </span> </a> </div> <div class="Polaris-LegacyCard__Section"> <div class="Polaris-CalloutCard"> <div class="Polaris-CalloutCard__Content"> <div class="Polaris-CalloutCard__Title"> <h2 class="Polaris-Text--root Polaris-Text--headingMd Polaris-Text--semibold"> Customize the style of your checkout </h2> </div> <div class="Polaris-TextContainer"> <p>Upload your store’s logo, change colors and fonts, and more.</p> </div> <div class="Polaris-CalloutCard__Buttons"> <a href="#" data-controller="paper-button" class="Polaris-Button"> <span class="Polaris-Button__Content"> <div class="Polaris-Button__Text"> Customize checkout </div> </span> </a> </div> </div> <img class="Polaris-CalloutCard__Image Polaris-CalloutCard__DismissImage" src="https://cdn.shopify.com/s/assets/admin/checkout/settings-customizecart-705f57c725ac05be5a34ec20c05b94298cb8afd10aac7bd9c7ad02030f48cfa0.svg" alt=""> </div> </div> </div></div>
1
2
3
4
5
6
7
8
9
<%= paper_callout_card( title: "Customize the style of your checkout", illustration: "https://cdn.shopify.com/s/assets/admin/checkout/settings-customizecart-705f57c725ac05be5a34ec20c05b94298cb8afd10aac7bd9c7ad02030f48cfa0.svg",) do |callout| %> <% callout.with_primary_action(url: "#") { "Customize checkout" } %> <% callout.with_dismiss_button(url: "#") %> <p>Upload your store’s logo, change colors and fonts, and more.</p><% end %>
No notes provided.
No params configured.