Skip to content

Commit

Permalink
334p 74행 중복 스타일 속성 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
stepanowon committed Aug 19, 2023
1 parent 0c28569 commit d1299c6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ch10/router-test10/src/pages/VideoPlayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default {
<style scoped>
.modal { display: block; position: fixed; z-index: 1;
left: 0; top: 0; width: 100%; height: 100%;
overflow: auto; background-color: rgb(0,0,0);
overflow: auto;
background-color: rgba(0,0,0,0.4); }
.box { background-color: white; margin:80px auto;
max-width: 500px; min-width: 100px; min-height: 350px;
Expand Down
2 changes: 1 addition & 1 deletion ch10/router-test5/src/pages/VideoPlayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default {
<style scoped>
.modal { display: block; position: fixed; z-index: 1;
left: 0; top: 0; width: 100%; height: 100%;
overflow: auto; background-color: rgb(0,0,0);
overflow: auto;
background-color: rgba(0,0,0,0.4); }
.box { background-color: white; margin:80px auto;
max-width: 500px; min-width: 100px; min-height: 350px;
Expand Down
2 changes: 1 addition & 1 deletion ch10/router-test6-1/src/pages/VideoPlayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default {
<style scoped>
.modal { display: block; position: fixed; z-index: 1;
left: 0; top: 0; width: 100%; height: 100%;
overflow: auto; background-color: rgb(0,0,0);
overflow: auto;
background-color: rgba(0,0,0,0.4); }
.box { background-color: white; margin:80px auto;
max-width: 500px; min-width: 100px; min-height: 350px;
Expand Down
2 changes: 1 addition & 1 deletion ch10/router-test7-3/src/pages/VideoPlayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default {
<style scoped>
.modal { display: block; position: fixed; z-index: 1;
left: 0; top: 0; width: 100%; height: 100%;
overflow: auto; background-color: rgb(0,0,0);
overflow: auto;
background-color: rgba(0,0,0,0.4); }
.box { background-color: white; margin:80px auto;
max-width: 500px; min-width: 100px; min-height: 350px;
Expand Down
2 changes: 1 addition & 1 deletion ch10/router-test8/src/pages/VideoPlayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default {
<style scoped>
.modal { display: block; position: fixed; z-index: 1;
left: 0; top: 0; width: 100%; height: 100%;
overflow: auto; background-color: rgb(0,0,0);
overflow: auto;
background-color: rgba(0,0,0,0.4); }
.box { background-color: white; margin:80px auto;
max-width: 500px; min-width: 100px; min-height: 350px;
Expand Down
2 changes: 1 addition & 1 deletion ch10/router-test9/src/pages/VideoPlayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default {
<style scoped>
.modal { display: block; position: fixed; z-index: 1;
left: 0; top: 0; width: 100%; height: 100%;
overflow: auto; background-color: rgb(0,0,0);
overflow: auto;
background-color: rgba(0,0,0,0.4); }
.box { background-color: white; margin:80px auto;
max-width: 500px; min-width: 100px; min-height: 350px;
Expand Down

0 comments on commit d1299c6

Please sign in to comment.