Hey there, I have a question that may seem basic to some, but as a newbie in coding, I appreciate your patience.
I've been working on an Ionic app and I'm struggling with maintaining CSS proportions of HTML elements. For instance, here's the code snippet I've been using:
.login-button {
margin-top: 25px;
margin-bottom: 30px;
width: 23px;
height: 20px;
}
I'm not sure how to ensure that these proportions stay consistent across different phone sizes. Any tips or advice on how to approach this issue?
Thanks for your help!