Commit 22da86f8 authored by Neosoulink's avatar Neosoulink
Browse files

refactor: decrease categorie icon and rounded it

parent 0fa9ec04
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -46,11 +46,11 @@ export class ProductsTableComponent implements OnInit, OnDestroy {
	selectProducts$: EventEmitter<any> = new EventEmitter();
	$subSlectProducts: Subscription;
	pagesChanges$: EventEmitter<number> = new EventEmitter();

	@Input()
	perPage: number = 0;
	@Input()
	hiddenTableActions: boolean;

	@Input()
	boxShadow: string;

+3 −3
Original line number Diff line number Diff line
@@ -10,8 +10,9 @@ import { ProductLocalesService } from '@modules/client.common.angular2/locale/pr
			}

			div img {
				width: 40px;
				height: 40px;
				width: 35px;
				height: 35px;
				border-radius: 50%;
			}
		`,
	],
@@ -20,7 +21,6 @@ import { ProductLocalesService } from '@modules/client.common.angular2/locale/pr
export class ProductCategoriesComponent implements ViewCell, OnInit {
	value: any;
	rowData: any;

	categoriesArr = [];

	constructor(private readonly _localeTranslate: ProductLocalesService) {}