@madgex/design-system 1.3.5 → 1.3.7
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/dist/_tokens/css/_tokens.css +1 -1
- package/dist/_tokens/js/_tokens-module.js +1 -1
- package/dist/_tokens/scss/_tokens.scss +1 -1
- package/dist/css/index.css +52 -0
- package/package.json +1 -1
- package/src/components/{Section-title → section-title}/_template.njk +1 -1
- /package/src/components/{Section-title → section-title}/_macro.njk +0 -0
- /package/src/components/{Section-title → section-title}/section-title.scss +0 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Do not edit directly
|
|
3
|
+
Generated on Wed, 12 Jun 2019 08:13:25 GMT
|
|
4
|
+
*/
|
|
5
|
+
*,
|
|
6
|
+
*::before,
|
|
7
|
+
*::after {
|
|
8
|
+
box-sizing: border-box;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
body {
|
|
12
|
+
font-family: "Helvetica", Arial, sans-serif;
|
|
13
|
+
font-size: 16px;
|
|
14
|
+
color: color("base");
|
|
15
|
+
overflow-x: hidden;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.mds-button {
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
user-select: none;
|
|
21
|
+
vertical-align: middle;
|
|
22
|
+
white-space: nowrap;
|
|
23
|
+
-webkit-appearance: none;
|
|
24
|
+
border: 1px solid transparent;
|
|
25
|
+
color: #ffffff;
|
|
26
|
+
padding: 8px 12px;
|
|
27
|
+
background-color: #2c608a;
|
|
28
|
+
font-size: 100%;
|
|
29
|
+
width: 100%;
|
|
30
|
+
display: inline-block;
|
|
31
|
+
text-align: center;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@media (min-width: 48em) {
|
|
35
|
+
.mds-button {
|
|
36
|
+
width: auto;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.mds-button:link, .mds-button:visited, .mds-button:active, .mds-button:hover {
|
|
41
|
+
color: #ffffff;
|
|
42
|
+
text-decoration: none;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.mds-card {
|
|
46
|
+
padding: 12px 16px;
|
|
47
|
+
border: 1px solid #71767a;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.mds-section-title {
|
|
51
|
+
border-bottom: 1px solid #71767a;
|
|
52
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{% from "../button/_macro.njk" import Button %}
|
|
2
2
|
|
|
3
3
|
<div class="mds-section-title{% if params.classes %} {{ params.classes }}{% endif %}">
|
|
4
|
-
<{{ params.
|
|
4
|
+
<{{ params.headingtag | default("h2") }} class="mds-section-title__header">{{ params.title }}</{{ params.headingtag | default("h2") }}>
|
|
5
5
|
{% if params.actionText -%}
|
|
6
6
|
<div class="mds-section-title__action">
|
|
7
7
|
{%- if params.actionHref -%}
|
|
File without changes
|
|
File without changes
|