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
<div class="Polaris-LegacyStack Polaris-LegacyStack--vertical">
<div class="Polaris-LegacyStack__Item">
<p class="Polaris-Text--root Polaris-Text--bodyLg Polaris-Text--start Polaris-Text--regular Polaris-Text--block">
Manage your Shopify store on-the-go with real-time notifications, access
to your dashboard, and order management, all from your smartphone.
</p>
</div>
<div class="Polaris-LegacyStack__Item">
<p class="Polaris-Text--root Polaris-Text--bodyLg Polaris-Text--center Polaris-Text--regular Polaris-Text--block">
Manage your Shopify store on-the-go with real-time notifications, access
to your dashboard, and order management, all from your smartphone.
</p>
</div>
<div class="Polaris-LegacyStack__Item">
<p class="Polaris-Text--root Polaris-Text--bodyLg Polaris-Text--end Polaris-Text--regular Polaris-Text--block">
Manage your Shopify store on-the-go with real-time notifications, access
to your dashboard, and order management, all from your smartphone.
</p>
</div>
<div class="Polaris-LegacyStack__Item">
<p class="Polaris-Text--root Polaris-Text--bodyLg Polaris-Text--justify Polaris-Text--regular Polaris-Text--block">
Manage your Shopify store on-the-go with real-time notifications, access
to your dashboard, and order management, all from your smartphone.
</p>
</div>
</div>
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
<%= polaris_stack(vertical: true) do |stack| %>
<% stack.with_item do %>
<%= polaris_text(variant: :bodyLg, as: :p, alignment: :start) do %>
Manage your Shopify store on-the-go with real-time notifications, access
to your dashboard, and order management, all from your smartphone.
<% end %>
<% end %>
<% stack.with_item do %>
<%= polaris_text(variant: :bodyLg, as: :p, alignment: :center) do %>
Manage your Shopify store on-the-go with real-time notifications, access
to your dashboard, and order management, all from your smartphone.
<% end %>
<% end %>
<% stack.with_item do %>
<%= polaris_text(variant: :bodyLg, as: :p, alignment: :end) do %>
Manage your Shopify store on-the-go with real-time notifications, access
to your dashboard, and order management, all from your smartphone.
<% end %>
<% end %>
<% stack.with_item do %>
<%= polaris_text(variant: :bodyLg, as: :p, alignment: :justify) do %>
Manage your Shopify store on-the-go with real-time notifications, access
to your dashboard, and order management, all from your smartphone.
<% end %>
<% end %>
<% end %>