@asd20/ui 3.2.735 → 3.2.737
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
|
@@ -169,9 +169,6 @@ export default {
|
|
|
169
169
|
padding: space(0.5);
|
|
170
170
|
}
|
|
171
171
|
&--fullscreen {
|
|
172
|
-
// & + .asd20-messaging--fullscreen {
|
|
173
|
-
// margin-top: space(-1);
|
|
174
|
-
// }
|
|
175
172
|
padding: space(1);
|
|
176
173
|
justify-content: space-between;
|
|
177
174
|
|
|
@@ -180,8 +177,6 @@ export default {
|
|
|
180
177
|
align-self: stretch;
|
|
181
178
|
padding: 0;
|
|
182
179
|
margin: 0;
|
|
183
|
-
// overflow: hidden;
|
|
184
|
-
margin: 0 space(-1) space(1) space(-1);
|
|
185
180
|
& > img {
|
|
186
181
|
display: block;
|
|
187
182
|
width: 100%;
|
|
@@ -82,6 +82,7 @@ export default {
|
|
|
82
82
|
icon: 'phone-alt',
|
|
83
83
|
label: 'Phone',
|
|
84
84
|
description: `<a href='tel:${this.group.contactPhone}'>${this.group.contactPhone}</a>`,
|
|
85
|
+
link: `tel:${this.group.contactPhone}`,
|
|
85
86
|
})
|
|
86
87
|
}
|
|
87
88
|
|
|
@@ -119,6 +120,7 @@ export default {
|
|
|
119
120
|
description: `<a href='${
|
|
120
121
|
this.group.contactEmail
|
|
121
122
|
}'>${this.group.contactEmail.replace('mailto:', '')}</a>`,
|
|
123
|
+
link: `mailto:${this.group.contactEmail}`,
|
|
122
124
|
})
|
|
123
125
|
}
|
|
124
126
|
|