mp-design-system 0.9.6 → 0.9.8
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/build/scss/library.css +1 -1
- package/dist/build/scss/library.css.map +1 -1
- package/dist/build/scss/main.css +1 -1
- package/dist/build/scss/main.css.map +1 -1
- package/package.json +1 -1
- package/src/_includes/components/post-meta/post-meta.config.js +9 -0
- package/src/_includes/components/post-meta/post-meta.njk +8 -2
- package/src/assets/scss/utilities/hr.scss +4 -0
- package/src/assets/scss/utilities/link.scss +13 -1
- package/src/assets/scss/utilities/space.scss +4 -0
package/package.json
CHANGED
@@ -6,5 +6,11 @@
|
|
6
6
|
links: params.series
|
7
7
|
}) }}
|
8
8
|
{% endif %}
|
9
|
-
{
|
10
|
-
</
|
9
|
+
{% if params.author %}
|
10
|
+
<p>By <a class="u-link u-link--underline" href="{{ params.author.link }}">{{ params.author.label | safe }}</a>, Wednesday 6 January 2021</p>
|
11
|
+
{% else %}
|
12
|
+
{{ params.content | safe }}
|
13
|
+
{% endif %}
|
14
|
+
</div>
|
15
|
+
|
16
|
+
{# test #}
|
@@ -7,7 +7,19 @@
|
|
7
7
|
text-decoration: underline;
|
8
8
|
}
|
9
9
|
|
10
|
+
&--petrol {
|
11
|
+
color: color('petrol');
|
12
|
+
}
|
13
|
+
|
10
14
|
&--red {
|
11
15
|
color: color('red');
|
12
16
|
}
|
13
|
-
|
17
|
+
|
18
|
+
&--underline {
|
19
|
+
text-decoration: underline;
|
20
|
+
|
21
|
+
&:hover {
|
22
|
+
text-decoration: none;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
}
|