style the product page a bit
This commit is contained in:
parent
399dca953a
commit
3999e1f7fd
|
@ -1,6 +1,6 @@
|
|||
|
||||
{{#each products as |product|}}
|
||||
<div>
|
||||
<div class="product">
|
||||
<h2>{{product.name}}</h2>
|
||||
|
||||
<p>
|
||||
|
@ -16,3 +16,9 @@
|
|||
{{/if}}
|
||||
</div>
|
||||
{{/each}}
|
||||
|
||||
{{#unless currentUser}}
|
||||
<p>
|
||||
{{i18n 'discourse_patrons.subscribe.unauthenticated'}}
|
||||
</p>
|
||||
{{/unless}}
|
||||
|
|
|
@ -1,2 +1,4 @@
|
|||
|
||||
{{product-list products=model}}
|
||||
<div id="product-list">
|
||||
{{product-list products=model}}
|
||||
</div>
|
||||
|
|
|
@ -31,3 +31,10 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
#product-list {
|
||||
padding: 40px 120px;
|
||||
.product {
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -38,11 +38,11 @@ en:
|
|||
confirm: Are you sure you want to cancel this subscription?
|
||||
subscribe:
|
||||
title: Subscribe
|
||||
unauthenticated: You need to create an account to subscribe.
|
||||
card:
|
||||
title: Payment
|
||||
customer:
|
||||
title: Customer Details
|
||||
empty: We couldn't find a customer identifier in our system. A new one will be created for you.
|
||||
buttons:
|
||||
subscribe: Subscribe
|
||||
one_time:
|
||||
|
|
Loading…
Reference in New Issue