RaulGM
March 21, 2019, 1:32pm
1
Hello,
I’m trying to set the ion-list
padding bottom to 0
. But I had no luck with that. I’ve looked up within Sass Variables , but I found no variable to change that specific.
I’ve also tried
ion-list {
padding-bottom: 0px;
}
but had no change.
RaulGM
March 21, 2019, 1:34pm
2
I know that it could be changed if a style attr is set within the ion-list
tag, but I want it to be global.
Have u tried this:
<ion-list no-padding>
<ion-list>
Let me know if it works. Cheers.
RaulGM
March 21, 2019, 2:37pm
4
Hi! Thanks for the reply.
As I said - late - in the second post, I want it to be global.
Just add
ion-list {
padding: 0px !important;
}
in your global.scss file.
1 Like