25 lines
335 B
SCSS
Raw Normal View History

2018-06-11 16:59:00 -06:00
.g-logo-grid {
align-items: center;
display: flex;
flex-wrap: wrap;
margin: 0 auto;
max-width: $site-max-width - 180;
2018-06-11 16:59:00 -06:00
text-align: center;
@media (min-width: 768px) {
margin-top: -48px;
}
2018-06-11 16:59:00 -06:00
& > div {
2018-06-15 14:07:21 -06:00
width: 50%;
2018-06-15 14:07:21 -06:00
@media (min-width: 768px) {
width: 33%;
}
}
img {
width: 100%
2018-06-11 16:59:00 -06:00
}
}