mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
23 lines
431 B
SCSS
23 lines
431 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(auto-fit, minmax(18rem, 1fr));
|
|
}
|
|
}
|