Issue
I have this line
<ion-button expand="block" id="create" shape="round">Create Account</ion-button>
I would like to increase the width of this button. I can't find any way to increase the button height and width. I have tried to use an id. That didn't do anything.
#create {
--width: 250px;
--height: 120px;
}
Solution
You are using invalid css properties ( --width
and --heigth
). I think you are looking for height
and width
.
#create {
width: 250px;
height: 120px;
}
Answered By - Nicolas
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.