17 lines
252 B
SCSS
17 lines
252 B
SCSS
.tmp_logo_container {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
|
|
.split-two {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
column-gap: 2rem;
|
|
}
|
|
|
|
@media(max-width: $md-breakpoint) {
|
|
.split-two {
|
|
display: block;
|
|
}
|
|
}
|