mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
27 lines
439 B
SCSS
27 lines
439 B
SCSS
@import '../../styles/variables';
|
|
|
|
.header {
|
|
margin-top: $spacer;
|
|
margin-bottom: $spacer;
|
|
}
|
|
|
|
.title {
|
|
margin: 0;
|
|
font-size: $font-size-h2;
|
|
|
|
@media (min-width: $break-point--small) {
|
|
font-size: $font-size-h1;
|
|
}
|
|
|
|
// category image
|
|
+ div:not(.description) {
|
|
margin-bottom: $spacer;
|
|
}
|
|
}
|
|
|
|
.description {
|
|
margin-top: $spacer / 2;
|
|
font-size: $font-size-large;
|
|
color: $brand-grey;
|
|
}
|