summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpublic/css/style.css2
-rwxr-xr-xviews/event.handlebars4
2 files changed, 3 insertions, 3 deletions
diff --git a/public/css/style.css b/public/css/style.css
index e9a0708..18f9b73 100755
--- a/public/css/style.css
+++ b/public/css/style.css
@@ -136,7 +136,7 @@ body, html {
border-radius: 2em;
padding: .5em 1em;
margin-right: 5px;
- margin-bottom: 5px;
+ margin-bottom: 10px;
background: #57b76d;
color: white;
font-size: 0.95em;
diff --git a/views/event.handlebars b/views/event.handlebars
index a4d714d..d4637f4 100755
--- a/views/event.handlebars
+++ b/views/event.handlebars
@@ -119,7 +119,7 @@
{{#if eventAttendees}}
<ul class="attendeesList">
{{#each eventAttendees}}
- <li{{#if ../editingEnabled}} data-attendee-name="{{this.name}}" data-attendee-id="{{this._id}}"{{/if}}><span class="attendee-name">{{this.name}}</span>{{#if ../editingEnabled}}<a href="#" class="remove-attendee" data-toggle="modal" data-target="#removeAttendeeModal"><i class="fas fa-user-times"></i></a>{{/if}}</li>
+ <li{{#if ../editingEnabled}} data-attendee-name="{{this.name}}" data-attendee-id="{{this._id}}"{{/if}}><span class="attendee-name">{{this.name}}</span>{{#if ../editingEnabled}} <a href="#" class="remove-attendee" data-toggle="modal" data-target="#removeAttendeeModal" title="Remove user from event"><i class="fas fa-user-times"></i></a>{{/if}}</li>
{{/each}}
</ul>
{{else}}
@@ -142,7 +142,7 @@
<div class="form-group row">
<label for="attendeeName" class="col-sm-2 col-form-label">Your name</label>
<div class="form-group col-sm-10">
- <input type="text" class="form-control" id="attendeeName" name="attendeeName" placeholder="Or an alias, perhaps..." data-validation="required length" data-validation-length="3-16">
+ <input type="text" class="form-control" id="attendeeName" name="attendeeName" placeholder="Or an alias, perhaps..." data-validation="required length" data-validation-length="3-30">
</div>
</div>
<div class="form-group row">