
--- client/resources/scss/admin/content.scss
+++ client/resources/scss/admin/content.scss
... | ... | @@ -704,9 +704,37 @@ |
704 | 704 |
top: 185%; |
705 | 705 |
left: 50%; |
706 | 706 |
transform: translateX(-50%); |
707 |
- width: 200px; |
|
707 |
+ min-width: 200px; |
|
708 |
+ max-width: 350px; |
|
708 | 709 |
height: auto; |
709 | 710 |
z-index: 10; |
710 | 711 |
background-color: #ffffff; |
711 | 712 |
border-radius: 2rem; |
713 |
+ |
|
714 |
+ .modeling-title{ |
|
715 |
+ padding: 1rem 2rem; |
|
716 |
+ text-align: center; |
|
717 |
+ background-color: #d5dce7; |
|
718 |
+ border-radius: 2rem 2rem 0 0; |
|
719 |
+ font-weight: 700; |
|
720 |
+ } |
|
721 |
+ |
|
722 |
+ .modeling-content{ |
|
723 |
+ padding: 2rem; |
|
724 |
+ ul{ |
|
725 |
+ li{ |
|
726 |
+ width: 100%; |
|
727 |
+ list-style: circle; |
|
728 |
+ } |
|
729 |
+ } |
|
730 |
+ label{ |
|
731 |
+ width: 100px; |
|
732 |
+ } |
|
733 |
+ input{ |
|
734 |
+ min-width: 200px; |
|
735 |
+ } |
|
736 |
+ textarea{ |
|
737 |
+ min-height: 7rem; |
|
738 |
+ } |
|
739 |
+ } |
|
712 | 740 |
} |
--- client/views/pages/subPage/Modeling.vue
+++ client/views/pages/subPage/Modeling.vue
... | ... | @@ -83,8 +83,29 @@ |
83 | 83 |
</button> |
84 | 84 |
<div v-if="activeModalTool?.id === tool.id" class="custom-modal"> |
85 | 85 |
<div class="modal-content"> |
86 |
- <p>{{ activeModalTool.title }}</p> |
|
87 |
- <button @click="closeModal">닫기</button> |
|
86 |
+ <p class="modeling-title">{{ activeModalTool.title }}</p> |
|
87 |
+ <div class="modeling-content"> |
|
88 |
+ <ul v-if="activeModalTool.title === '참여자'"> |
|
89 |
+ <li>참여자1</li> |
|
90 |
+ <li>참여자1</li> |
|
91 |
+ <li>참여자1</li> |
|
92 |
+ <li>참여자1</li> |
|
93 |
+ </ul> |
|
94 |
+ <div v-else-if="activeModalTool.title === '코멘트'"> |
|
95 |
+ <div class="input-group mb10"> |
|
96 |
+ <label for="">writer</label> |
|
97 |
+ <input type="text" class="form-control sm" disabled> |
|
98 |
+ </div> |
|
99 |
+ <div class="input-group mb10"> |
|
100 |
+ <label for="">summary</label> |
|
101 |
+ <input type="text" class="form-control sm"> |
|
102 |
+ </div> |
|
103 |
+ <div class="input-group"> |
|
104 |
+ <label for="">comment</label> |
|
105 |
+ <textarea class="form-control sm"></textarea> |
|
106 |
+ </div> |
|
107 |
+ </div> |
|
108 |
+ </div> |
|
88 | 109 |
</div> |
89 | 110 |
</div> |
90 | 111 |
</li> |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?