usersadd
This commit is contained in:
		| @@ -1,7 +1,8 @@ | |||||||
| import styles from './style.module.scss'; | import styles from './style.module.scss'; | ||||||
| import avatar from '../../img/profilePage/avatar.png'; | import avatar from '../../img/profilePage/avatar.png'; | ||||||
| import Header from '../Header'; | import Header from '../Header'; | ||||||
|  | import del from '../../img/AddUsers/delete.png'; | ||||||
|  | import perm from '../../img/AddUsers/permission.png'; | ||||||
| const AddUsers = () => { | const AddUsers = () => { | ||||||
|     return ( |     return ( | ||||||
|         <> |         <> | ||||||
| @@ -38,6 +39,48 @@ const AddUsers = () => { | |||||||
|                                     <span>1</span> |                                     <span>1</span> | ||||||
|  |  | ||||||
|                                 </div> |                                 </div> | ||||||
|  |                                 <div className={styles.delete_container}><img src={del} className={styles.delete_img}></img></div> | ||||||
|  |                                 <div className={styles.feautures}>Отправлено</div> | ||||||
|  |                             </div> | ||||||
|  |                         </div> | ||||||
|  |                         <div className={styles.profile__user_container}> | ||||||
|  |                             <div className={styles.profile__user_img_container}> | ||||||
|  |                                 <img src={avatar} className={styles.profile__user_img}></img> | ||||||
|  |                                 <div className={styles.profile__user_role}>Участник</div> | ||||||
|  |                             </div> | ||||||
|  |                             <div className={styles.profile__user_info_container}> | ||||||
|  |                                 <div className={styles.profile__user_fullName}><span>К</span>ирсанов Дмитрий </div> | ||||||
|  |                                 <div className={styles.profile__user_spaciality}>Junior PHP разработчик</div> | ||||||
|  |                                 <div className={styles.profile__user_socialMedia}>TG: @dkir</div> | ||||||
|  |                                 <div className={styles.profile__user_email}>gmail@gmail.com</div> | ||||||
|  |                                 <div className={styles.profile__user_progress_container}> | ||||||
|  |                                     <span>0</span> | ||||||
|  |                                     <span className={styles.profile__user_progress_line}></span> | ||||||
|  |                                     <span>1</span> | ||||||
|  |  | ||||||
|  |                                 </div> | ||||||
|  |                                 <div className={styles.delete_container}><img src={del} className={styles.delete_img}></img></div> | ||||||
|  |                                 <div className={styles.permission_container}><img src={perm} className={styles.permission_img}></img></div> | ||||||
|  |                             </div> | ||||||
|  |                         </div> | ||||||
|  |                         <div className={styles.profile__user_container}> | ||||||
|  |                             <div className={styles.profile__user_img_container}> | ||||||
|  |                                 <img src={avatar} className={styles.profile__user_img}></img> | ||||||
|  |                                 <div className={styles.profile__user_role}>Участник</div> | ||||||
|  |                             </div> | ||||||
|  |                             <div className={styles.profile__user_info_container}> | ||||||
|  |                                 <div className={styles.profile__user_fullName}><span>К</span>ирсанов Дмитрий </div> | ||||||
|  |                                 <div className={styles.profile__user_spaciality}>Junior PHP разработчик</div> | ||||||
|  |                                 <div className={styles.profile__user_socialMedia}>TG: @dkir</div> | ||||||
|  |                                 <div className={styles.profile__user_email}>gmail@gmail.com</div> | ||||||
|  |                                 <div className={styles.profile__user_progress_container}> | ||||||
|  |                                     <span>0</span> | ||||||
|  |                                     <span className={styles.profile__user_progress_line}></span> | ||||||
|  |                                     <span>1</span> | ||||||
|  |  | ||||||
|  |                                 </div> | ||||||
|  |                                 <div className={styles.delete_container}><img src={del} className={styles.delete_img}></img></div> | ||||||
|  |                                 <div className={styles.permission_container}><img src={perm} className={styles.permission_img}></img></div> | ||||||
|                             </div> |                             </div> | ||||||
|                         </div> |                         </div> | ||||||
|                     </div> |                     </div> | ||||||
|   | |||||||
| @@ -18,6 +18,7 @@ | |||||||
|  |  | ||||||
|     |     | ||||||
|     &__search { |     &__search { | ||||||
|  |         margin-top: 150px; | ||||||
|         border-radius: 10px; |         border-radius: 10px; | ||||||
|         border: 1px solid var(--gray_stroke, #D0D2D8); |         border: 1px solid var(--gray_stroke, #D0D2D8); | ||||||
|         height: 70px; |         height: 70px; | ||||||
| @@ -36,23 +37,29 @@ | |||||||
|         display: flex; |         display: flex; | ||||||
|         justify-content: space-between; |         justify-content: space-between; | ||||||
|          |          | ||||||
|  |  | ||||||
|     } |     } | ||||||
|     &__user { |     &__user { | ||||||
|         &_img { |         &_img { | ||||||
|  |             width: 180px; | ||||||
|  |             height: 180px; | ||||||
|             &_container { |             &_container { | ||||||
|                 display: flex; |                 display: flex; | ||||||
|                 flex-direction: column; |                 flex-direction: column; | ||||||
|                 margin-right: 50px; |                 margin-right: 50px; | ||||||
|                  |                  | ||||||
|  |                  | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|         &_container { |         &_container { | ||||||
|             display: flex; |             display: flex; | ||||||
|             width: 50%; |             width: 48%; | ||||||
|  |             margin-bottom: 110px; | ||||||
|  |             position: relative; | ||||||
|         } |         } | ||||||
|         &_info_container { |         &_info_container { | ||||||
|             text-align: left; |             text-align: left; | ||||||
|             margin-top: 20px; |             margin-top: 18px; | ||||||
|             display: flex; |             display: flex; | ||||||
|             text-align: left; |             text-align: left; | ||||||
|             flex-direction: column; |             flex-direction: column; | ||||||
| @@ -60,7 +67,7 @@ | |||||||
|         &_fullName { |         &_fullName { | ||||||
|             color: #000; |             color: #000; | ||||||
|             font-family: Montserrat; |             font-family: Montserrat; | ||||||
|             font-size: 36px; |             font-size: 26px; | ||||||
|             font-style: normal; |             font-style: normal; | ||||||
|             font-weight: 600; |             font-weight: 600; | ||||||
|             line-height: normal; |             line-height: normal; | ||||||
| @@ -72,7 +79,7 @@ | |||||||
|         &_spaciality { |         &_spaciality { | ||||||
|             color: #000; |             color: #000; | ||||||
|             font-family: Montserrat; |             font-family: Montserrat; | ||||||
|             font-size: 32px; |             font-size: 22px; | ||||||
|             font-style: normal; |             font-style: normal; | ||||||
|             font-weight: 400; |             font-weight: 400; | ||||||
|             line-height: normal; |             line-height: normal; | ||||||
| @@ -81,7 +88,7 @@ | |||||||
|         &_socialMedia { |         &_socialMedia { | ||||||
|             color: #000; |             color: #000; | ||||||
|             font-family: Montserrat; |             font-family: Montserrat; | ||||||
|             font-size: 20px; |             font-size: 18px; | ||||||
|             font-style: normal; |             font-style: normal; | ||||||
|             font-weight: 400; |             font-weight: 400; | ||||||
|             line-height: normal; |             line-height: normal; | ||||||
| @@ -90,7 +97,7 @@ | |||||||
|         &_email { |         &_email { | ||||||
|             color: #000; |             color: #000; | ||||||
|             font-family: Montserrat; |             font-family: Montserrat; | ||||||
|             font-size: 20px; |             font-size: 18px; | ||||||
|             font-style: normal; |             font-style: normal; | ||||||
|             font-weight: 400; |             font-weight: 400; | ||||||
|             line-height: normal; |             line-height: normal; | ||||||
| @@ -129,6 +136,8 @@ | |||||||
|         display: flex; |         display: flex; | ||||||
|         justify-content: space-between; |         justify-content: space-between; | ||||||
|         margin-top: 120px; |         margin-top: 120px; | ||||||
|  |         flex-wrap: wrap; | ||||||
|  |          | ||||||
|     } |     } | ||||||
|     &__card { |     &__card { | ||||||
|  |  | ||||||
| @@ -141,6 +150,7 @@ | |||||||
|             width: 48%; |             width: 48%; | ||||||
|             border-radius: 10px; |             border-radius: 10px; | ||||||
|             border: 1px solid var(--gray_stroke, #D0D2D8); |             border: 1px solid var(--gray_stroke, #D0D2D8); | ||||||
|  |             margin-bottom: 110px; | ||||||
|         } |         } | ||||||
|         &_text { |         &_text { | ||||||
|             color: #000; |             color: #000; | ||||||
| @@ -169,3 +179,52 @@ | |||||||
|     font-weight: 400; |     font-weight: 400; | ||||||
|     line-height: normal; |     line-height: normal; | ||||||
| } | } | ||||||
|  | .feautures { | ||||||
|  |     width: 90px; | ||||||
|  |     position: absolute; | ||||||
|  |     right: 0px; | ||||||
|  |     bottom: 40px; | ||||||
|  |     display: flex; | ||||||
|  |     justify-content: center; | ||||||
|  |     font-family: Montserrat; | ||||||
|  |     align-items: center; | ||||||
|  |     color: #60AD1E; | ||||||
|  |     font-family: Montserrat; | ||||||
|  |     font-size: 16px; | ||||||
|  |     font-style: normal; | ||||||
|  |     font-weight: 400; | ||||||
|  |     line-height: normal; | ||||||
|  |     background: #E7FFD2; | ||||||
|  |     height: 15px; | ||||||
|  |     padding: 10px; | ||||||
|  |     } | ||||||
|  |     .permission { | ||||||
|  |  | ||||||
|  |  | ||||||
|  |         &_container { | ||||||
|  |             width: 40px; | ||||||
|  |             height: 40px; | ||||||
|  |             position: absolute; | ||||||
|  |             right: 0px; | ||||||
|  |             bottom: 40px; | ||||||
|  |         } | ||||||
|  |         &_img { | ||||||
|  |             height: 100%; | ||||||
|  |             width: 100%; | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  |     .delete { | ||||||
|  |  | ||||||
|  |  | ||||||
|  |         &_container { | ||||||
|  |             width: 40px; | ||||||
|  |             height: 40px; | ||||||
|  |             position: absolute; | ||||||
|  |             top: 40px; | ||||||
|  |             right: 0px; | ||||||
|  |         } | ||||||
|  |         &_img { | ||||||
|  |             height: 100%; | ||||||
|  |             width: 100%; | ||||||
|  |         } | ||||||
|  |     } | ||||||
							
								
								
									
										
											BIN
										
									
								
								src/img/AddUsers/delete.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								src/img/AddUsers/delete.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 688 B | 
							
								
								
									
										
											BIN
										
									
								
								src/img/AddUsers/permission.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								src/img/AddUsers/permission.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 740 B | 
		Reference in New Issue
	
	Block a user