commit | author | age | ||
4f1007 | 1 | <template> |
CM | 2 | <dialog open> |
3 | <slot></slot> | |
4 | </dialog> | |
5 | </template> | |
6 | ||
7 | <style scoped> | |
8 | dialog { | |
9 | margin: 0; | |
10 | position: fixed; | |
11 | top: 20vh; | |
12 | left: 30%; | |
13 | width: 40%; | |
14 | background-color: white; | |
15 | box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26); | |
16 | padding: 1rem; | |
17 | } | |
18 | </style> |