@salesforcedevs/mrkt-components 0.41.0-alpha.11 → 0.41.0-alpha.14

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforcedevs/mrkt-components",
3
- "version": "0.41.0-alpha.11",
3
+ "version": "0.41.0-alpha.14",
4
4
  "description": "Marketing Lightning web components for DSC",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -65,6 +65,7 @@ a {
65
65
  display: flex;
66
66
  align-items: center;
67
67
  justify-content: center;
68
+ white-space: nowrap;
68
69
  }
69
70
 
70
71
  a::after {
@@ -47,7 +47,7 @@ img {
47
47
  @media screen and (max-width: 1024px) {
48
48
  :host {
49
49
  --padding-top: 38px;
50
- --padding-bottom: 52px;
50
+ --padding-bottom: 72px;
51
51
  }
52
52
 
53
53
  .container {
@@ -13,7 +13,6 @@
13
13
  var(--mrkt-c-two-col-list-section-padding-bottom)
14
14
  var(--dx-g-page-padding-horizontal);
15
15
  display: flex;
16
- width: 100%;
17
16
  }
18
17
 
19
18
  .two-col-list-section.dark {
@@ -23,7 +22,8 @@
23
22
  .item-grid {
24
23
  display: grid;
25
24
  grid-template-columns: 1fr 1fr;
26
- grid-gap: var(--dx-g-spacing-3xl);
25
+ grid-gap: var(--dx-g-spacing-3xl) var(--dx-g-spacing-6xl);
26
+ width: max-content;
27
27
  margin: auto;
28
28
  }
29
29
 
@@ -31,9 +31,11 @@
31
31
  width: 100%;
32
32
  max-width: 414px;
33
33
  display: grid;
34
- grid-template-areas: "icon title" "icon subtitle";
34
+ grid-template-areas:
35
+ "icon title"
36
+ "icon subtitle";
35
37
  grid-template-columns: min-content auto;
36
- grid-template-rows: min-content auto;
38
+ grid-template-rows: min-content;
37
39
  grid-gap: var(--dx-g-spacing-xs) var(--dx-g-spacing-mlg);
38
40
  }
39
41
 
@@ -10,7 +10,7 @@
10
10
  background-color={item.iconBackgroundColor}
11
11
  ></dx-icon-badge>
12
12
  <h3 class="title dx-text-heading-4b">{item.title}</h3>
13
- <span class="subtitle dx-text-body-1">{item.subtitle}</span>
13
+ <span class="subtitle dx-text-body-2">{item.subtitle}</span>
14
14
  </div>
15
15
  </template>
16
16
  </div>
@@ -28,7 +28,7 @@ img {
28
28
  width: 50%;
29
29
  max-width: 400px;
30
30
  flex-grow: 1;
31
- margin-right: 116px;
31
+ margin-right: 60px;
32
32
  }
33
33
 
34
34
  .text-container {