adata-ui 0.1.75 → 0.1.76

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": "adata-ui",
3
- "version": "0.1.75",
3
+ "version": "0.1.76",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -3,12 +3,12 @@ import MailTo from "./MailTo.vue";
3
3
  export default {
4
4
  title: "MailTo",
5
5
  component: MailTo,
6
- template: "<mail-to></mail-to>",
6
+ template: "<a-mail-to></a-mail-to>",
7
7
  };
8
8
 
9
9
  const Template = () => ({
10
10
  components: { MailTo },
11
- template: "<mail-to></mail-to>",
11
+ template: "<a-mail-to></a-mail-to>",
12
12
  });
13
13
 
14
14
  export const AMailTo = Template.bind({});
@@ -203,6 +203,20 @@ export default {
203
203
  padding: 24px;
204
204
  display: flex;
205
205
  justify-content: center;
206
+ position: relative;
207
+ &::before {
208
+ content: " ";
209
+ position: absolute;
210
+ top: 50%;
211
+ left: 50%;
212
+ z-index: 1;
213
+ width: 80px;
214
+ height: 80px;
215
+ transform: translate(-50%, -50%);
216
+ background: rgba(189, 199, 206, 0.15);
217
+ border-radius: 100%;
218
+ padding: 20px;
219
+ }
206
220
  }
207
221
  &__img {
208
222
  width: 120px;