@enure/jacklin 1.3.0 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/template.handlebars +6 -3
package/package.json
CHANGED
package/template.handlebars
CHANGED
|
@@ -60,6 +60,9 @@
|
|
|
60
60
|
.SummaryList-item {
|
|
61
61
|
margin-bottom: 2px;
|
|
62
62
|
}
|
|
63
|
+
.SummaryList-itemName {
|
|
64
|
+
font-weight: 500;
|
|
65
|
+
}
|
|
63
66
|
.WorkList-highlights {
|
|
64
67
|
margin-top: 12px;
|
|
65
68
|
display: flex;
|
|
@@ -133,11 +136,11 @@
|
|
|
133
136
|
</section>
|
|
134
137
|
<section>
|
|
135
138
|
<h2>Work History, cont.</h2>
|
|
136
|
-
<ul class="
|
|
139
|
+
<ul class="SummaryList">
|
|
137
140
|
{{#each work}}
|
|
138
141
|
{{#unless this.isFeatured}}
|
|
139
|
-
<li class="
|
|
140
|
-
{{this.position}} at {{this.name}}
|
|
142
|
+
<li class="SummaryList-item">
|
|
143
|
+
<span class="SummaryList-itemPosition">{{this.position}}</span> at <span class="SummaryList-itemName">{{this.name}}</span>
|
|
141
144
|
</li>
|
|
142
145
|
{{/unless}}
|
|
143
146
|
{{/each}}
|