Remove space between rows in grid

Hello,
I am looking for away to remove space between rows in an ionic grid.

Here is my code:

Your help is appreciated
Thanks,
-OA

Pretty much everything (flex & width: 100%) in the .col class needs to be overridden in order to get rid of the gaps. Probably best thing to do is create a different class with just the padding and border box. For example :

foo {
    padding: 5px;
    display: border-box;
}

Have you used the “row-no-padding” class in your row, it does exactly that

Thank you so much. That did it.