mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
27 lines
510 B
SCSS
27 lines
510 B
SCSS
@import '../styles/variables';
|
|
|
|
.resultsTitle {
|
|
color: $brand-grey-light;
|
|
font-size: $font-size-h3;
|
|
margin-top: -($spacer / 2);
|
|
margin-bottom: $spacer;
|
|
|
|
span {
|
|
color: $brand-grey-dark;
|
|
}
|
|
}
|
|
|
|
.results {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
grid-gap: $spacer;
|
|
|
|
@media (min-width: $break-point--small) {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
@media (min-width: $break-point--medium) {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
}
|