Skip to content

Commit 3fea114

Browse files
author
daretobedifferent18
committed
Making table stackable
1 parent d28227f commit 3fea114

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/templates/components/public/ticket-list.hbs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{{!-- Removed `Currency Symbol` helper from the `paymentCurrency` since some currency are not getting rendered. Hotfix until a permanent solution found --}}
22
<form class="ui form" {{action on='submit' preventDefault=true}}>
3-
<table class="ui unstackable very basic compact table" style="margin-bottom: 0">
3+
<table class="ui stackable very basic compact table" style="margin-bottom: 0">
44
<thead class="full-width">
55
<tr>
66
<th>{{t 'Type'}}</th>
7+
<th class="three wide"></th>
78
<th class="ui four wide single line">{{t 'Price'}}</th>
8-
<th class="one wide"></th>
99
<th class="one wide">{{t 'Quantity'}}</th>
1010
<th class="ui right aligned two wide">{{t 'Subtotal'}}</th>
1111
</tr>
@@ -31,9 +31,10 @@
3131
<small class="ui gray-text small">Sale ends on {{moment-format ticket.salesEndsAt 'ddd, DD MMMM YY, h:mm A'}}</small>
3232
</div>
3333
</td>
34+
<td></td>
3435
<td id="{{ticket.id}}_price">
3536
{{#if (eq ticket.type 'donation') }}
36-
<div>
37+
<div class="field m-0">
3738
<div class="ui labeled input">
3839
<label for="i_{{ticket.id}}_price" class="ui label">{{currency-symbol this.eventCurrency}}</label>
3940
<Input
@@ -76,7 +77,6 @@
7677
</p>
7778
{{/if}}
7879
</td>
79-
<td></td>
8080
<td>
8181
<div class="field">
8282
<UiDropdown

0 commit comments

Comments
 (0)