Ion-datetime left alignment

How to make the text within ion-datetime aligned left as it is by default with ?

Currently the default is center.

This is my solution:

	// right aligh datetime
.item-datetime ion-label {
	-webkit-flex: initial;
	-ms-flex: initial;
	flex: initial;
	max-width: 200px;
	pointer-events: none;
}

.datetime-text:empty:not(:focus):before{
	content: "Data di nascita*";
	color: #999;
}