style: Update button styles in employee table
This commit is contained in:
		
					parent
					
						
							
								c7f3bf5c54
							
						
					
				
			
			
				commit
				
					
						d80c334e29
					
				
			
		
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -46,8 +46,8 @@ | |||
|         <td>{{ employee.city }}</td> | ||||
|         <td>{{ employee.phone }}</td> | ||||
|         <td> | ||||
|           <button (click)="editEmployee(employee.id)">Edit</button> | ||||
|           <button (click)="deleteEmployee(employee.id)">Delete</button> | ||||
|           <button class="btn btn-primary me-2" (click)="editEmployee(employee.id)">Edit</button> | ||||
|           <button class="btn btn-danger" (click)="deleteEmployee(employee.id)">Delete</button> | ||||
|         </td> | ||||
|       </tr> | ||||
|       } | ||||
|  |  | |||
		Reference in a new issue