I am looking for help with changing some CSS properties of my button in my Ionic app.
I want my button to look like this:

This is how it looks like now:

I have figured out that if I want to achieve my desired look I have to change the CSS property justify-content: center; of the DOM generated div with class button-inner to justify-content: space-between;... the problem is I don't know how to properly target this element in my SCSS file... I have tried with bellow examples as seen in the docs but nothing works...
.button-native {
span {
justify-content: space-between;
}
}
ion-button:scope(native) {
span {
justify-content: space-between;
}
}
ion-button:scope(native) {
.button-native {
justify-content: space-between;
}
}
ion-button:root(native) {
span {
justify-content: space-between;
}
}
ion-button:root(native) {
.button-native {
justify-content: space-between;
}
}
Here is also my HTML markup for the button:
<ion-button expand="block">Add to cart <span>{{ 123 }} €</span></ion-button>
what am I missing? What am I doing wrong?