1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| <template>
| <div class="wrap-2">
| <slot></slot>
| </div>
| </template>
| <script></script>
| <style scoped>
| .wrap {
| background-image: url('@/assets/icon/bg-border-1.png');
| background-repeat: no-repeat;
| /* background-position: center; */
| background-size: cover;
| /* background-color: white; */
| width: 100%;
| height: 100%;
| object-fit: cover;
| margin: 10px;
| }
|
| .wrap-2 {
| border: 2px solid rgba(255, 255, 255, 0.829);
| border-radius: 8px;
| padding: 4px;
| background: linear-gradient(#14428be8, #14428b8f);
| }
| </style>
|
|