Skip to content

Commit 9a52ab4

Browse files
authored
Update Modal.vue
1 parent 0d23571 commit 9a52ab4

File tree

1 file changed

+2
-2
lines changed
  • ch08/provide-inject-teleport-test86/src/components

1 file changed

+2
-2
lines changed

ch08/provide-inject-teleport-test86/src/components/Modal.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ export default {
1515
<style scoped>
1616
.modal { display: block; position: fixed; z-index: 1;
1717
left: 0; top: 0; width: 100%; height: 100%;
18-
overflow: auto; background-color: rgb(0,0,0);
18+
overflow: auto;
1919
background-color: rgba(0,0,0,0.4); }
2020
.box { display: flex; flex-direction: column;
2121
align-items: center; justify-content: center;
2222
position: absolute; left: 50%; top: 50%; background-color:aqua;
2323
border: double 3px gray; width:100px; height: 80px;
2424
margin-top:-50px; margin-left:-50px;}
2525
</style>
26-
26+

0 commit comments

Comments
 (0)