Skip to content

Commit

Permalink
Fix 141766 groupcard design prod (#356)
Browse files Browse the repository at this point in the history
* 141766 group card font size issue fix

# Conflicts:
#	src/app/client/package.json

# Conflicts:
#	src/app/client/package.json

* 141762 activity card ui issue fixes
  • Loading branch information
Shailrocks123 authored Jul 22, 2024
1 parent bbf5fb8 commit 9042f71
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/app/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"@angular/router": "^11.2.14",
"@dicdikshaorg/chatbot-client": "3.0.4",
"@dicdikshaorg/client-services": "2.10.0",
"@dicdikshaorg/common-consumption": "4.12.18",
"@dicdikshaorg/common-consumption": "4.12.21",
"@dicdikshaorg/common-form-elements": "5.1.30",
"@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
@@ -1,7 +1,16 @@
@use "~@project-sunbird/sb-styles/assets/mixins/mixins" as *;

.sb-add-activity-content-cards{
@include respond-above(md){
grid-template-columns: repeat(4,1fr);
}
}
// .sb-add-activity-content-cards{
// @include respond-above(md){
// grid-template-columns: repeat(4,1fr);
// }
// }

@media (min-width: 1440px) {
.sb-add-activity-content-cards{
grid-template-columns: repeat(4, 1fr);
grid-gap:2rem;
}
}


0 comments on commit 9042f71

Please sign in to comment.