Ionic is great because it comes with batteries included. Nevertheless, we always need some customization in the layout. Here is how to remove the start padding to the left:
ion-item {
--padding-start: 0;
}
You may want to remove the hover color as well:
ion-item:hover {
--background-hover: none;
}