Skip to content

Commit

Permalink
108123- Content card height issue fixed and content card count after …
Browse files Browse the repository at this point in the history
…login
  • Loading branch information
muskangupta64 authored and samarthtrigyn committed Feb 29, 2024
1 parent 42bf3a1 commit f7f3f2e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@angular/platform-browser-dynamic": "^11.2.14",
"@angular/router": "^11.2.14",
"@dicdikshaorg/chatbot-client": "3.0.3",
"@dicdikshaorg/common-consumption": "4.12.10",
"@dicdikshaorg/common-consumption": "4.12.11",
"@dicdikshaorg/common-form-elements": "5.1.14",
"@dicdikshaorg/sb-content-section": "5.0.1",
"@dicdikshaorg/sunbird-collection-editor": "4.5.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
@media (min-width: 768px) and (max-width: 1024px){
.sb-grid {
grid-template-columns: repeat(1, 1fr);
}
}
@media (min-width: 1025px){
.sb-grid {
grid-template-columns: repeat(2, 1fr);
grid-gap: 1rem;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ import {omit, groupBy, get, uniqBy, toLower, find, map as _map, forEach, each} f


@Component({
templateUrl: './home-search.component.html'
templateUrl: './home-search.component.html',
styleUrls: ['./home-search.component.scss']
})
export class HomeSearchComponent implements OnInit, OnDestroy, AfterViewInit {

Expand Down

0 comments on commit f7f3f2e

Please sign in to comment.