I'm wondering how to reduce the spacing between the rows? I've tried setting margins and paddings to 0, but nothing seems to be biting.
Destktop view on the left and mobile view on the right.
.content{
margin: 0;
padding: 0;
width: 100%;
display: grid;
grid-gap: 5px;
grid-template-columns: repeat(36, 1fr);
justify-items: stretch;
align-content: start;
}
.one{
grid-column: 1/37;
width: 100%;
}
.two{
grid-column: 1/11;
}
.three{
grid-column: 12/24;
justify-self: center;
align-self: start;
position: relative;
bottom: 5px;
}
.four{
grid-column: 25/37;
}
Here's a link to a test site: http://www.acm.no/test/valhall/