Gallery Style (square)

 avatar
Ian
scss
2 years ago
593 B
8
Indexable
Never
/*START -  reduce height of gsm to square*/
div.gallery-component__col {
    .gallery-card {
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
        height: 350px;
    }
    padding-right: 10px;
    padding-left: 10px;
    @media only screen and (max-width: 768px) {
        .gallery-card {
            height: 350px;
        }
        flex-basis: 100%;
        padding-right: 5px;
        padding-left: 5px;
    }
}
div.gallery-component__header{
    max-width: 1200px;
    margin-bottom: 40px;
} 
/*END -  reduce height of gsm to square*/