margin between counters

This commit is contained in:
Davide Alberani 2017-04-02 18:24:18 +02:00
parent 40d2b4fcb6
commit 04e8a42d93
2 changed files with 5 additions and 1 deletions

View file

@ -19,7 +19,7 @@
<span> <span>
<span class="label label-info vcenter pull-right">{{'Attendees:' | translate}} {{countAttendees}}</span> <span class="label label-info vcenter pull-right">{{'Attendees:' | translate}} {{countAttendees}}</span>
&nbsp; &nbsp;
<span class="label label-warning vcenter pull-right">{{'Registered:' | translate}} {{((event.tickets || []) | registeredFilter).length}}</span> <span class="label label-warning vcenter pull-right registered-counter">{{'Registered:' | translate}} {{((event.tickets || []) | registeredFilter).length}}</span>
</span> </span>
</h1> </h1>
</div> </div>

View file

@ -95,3 +95,7 @@ input[type=text].form-control, input[type=search].form-control {
.nowrap { .nowrap {
white-space: nowrap; white-space: nowrap;
} }
.registered-counter {
margin-right: 5px;
}