File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,14 @@ body.dimmable.undetached.dimmed {
87
87
justify-content : space-between ;
88
88
}
89
89
90
+ .justify-content-stretch {
91
+ justify-content : stretch ;
92
+ }
93
+
94
+ .flex-grow-1 {
95
+ flex-grow : 1 ;
96
+ }
97
+
90
98
.upper-case {
91
99
text-transform : uppercase ;
92
100
}
Original file line number Diff line number Diff line change 31
31
@data ={{ this.model.order }} />
32
32
<br />
33
33
{{ #if (eq this.model.order.user.id this.authManager.currentUser.id )}}
34
- <div class =" ui padded grid " >
35
- <button class =" ui labeled icon left floated seven wide column {{ if this.isLoadingTickets ' loading' }} {{ if this.device.isMobile ' fluid' }} button"
34
+ <div class =" d-flex justify-content-stretch " >
35
+ <button class =" ui labeled icon flex-grow-1 {{ if this.isLoadingTickets ' loading' }} {{ if this.device.isMobile ' fluid' }} button"
36
36
{{ action this.downloadTickets this.model.event.name this.model.order.identifier }} >
37
37
<i class =" download icon" ></i >
38
38
{{ t ' All Tickets' }}
39
39
</button >
40
40
<button {{ action ' downloadInvoice' this.model.event.name this.model.order.identifier }}
41
- class =" ui labeled icon blue right floated eight wide column {{ if this.isLoadingInvoice ' loading' }} {{ if this.device.isMobile ' fluid' }} button" >
41
+ class =" ui labeled icon blue flex-grow-1 {{ if this.isLoadingInvoice ' loading' }} {{ if this.device.isMobile ' fluid' }} button" >
42
42
<i class =" file alternate icon" ></i >
43
43
{{ t ' Download Invoice' }}
44
44
</button >
You can’t perform that action at this time.
0 commit comments