File size: 598 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
@import "../../mixins.scss";
.searchResultsPage {
min-height: 700px;
padding-top: 100px;
.resultNotFound {
font-size: 24px;
color: var(--black-light);
}
.pageTitle {
font-size: 24px;
line-height: 34px;
color: white;
margin-bottom: 25px;
}
.content {
display: flex;
flex-flow: row wrap;
gap: 10px;
margin-bottom: 50px;
@include md {
gap: 20px;
}
.movieCard {
.posterBlock {
margin-bottom: 20px;
}
}
}
}
|