Skip to content

Commit

Permalink
Merge pull request #126 from Salesforce-org-Impact-Labs/lwc_Service_Reqs
Browse files Browse the repository at this point in the history
Lwc service reqs
  • Loading branch information
AIrwin33 authored Jul 9, 2020
2 parents 4fe0e82 + e3151b3 commit 4116f5d
Show file tree
Hide file tree
Showing 9 changed files with 577 additions and 427 deletions.
2 changes: 1 addition & 1 deletion force-app/main/default/classes/getRecommendations.cls
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ public with sharing class getRecommendations {
public static list<ServiceRecommendation> getRecommendations(id contactId) {
Client_Profile__c CP = getProfile(contactId);
List<Service__c> services = getRecommendationsServiceQuery.primaryQuery(CP);

System.debug('services' + services);
// convert to ServiceRecommendation
list<ServiceRecommendation> output = servicesToRecommendations(services);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
.hiddenRecsDiv .parentCard .slds-card .slds-card_narrow{
border: 1px solid grey !important;
.parentCard {
margin-top:0.5em !important;
margin-bottom:0.5em !important;
border:1px solid grey !important;
border-radius:5px !important;
width: 100%;
}

.headerdv {
display: flex;
}


.headerText label {
font-size:10px;
}

.relevanceHeader {
font-size:13px;
font-size:14px;
color: #006dcc !important;
}

Expand Down Expand Up @@ -50,9 +62,15 @@

.relevanceDiv {
padding: 5px;
margin-right: 20px;
margin-top: 25px;
border-radius: 5px;
color:rgb(91, 90, 90);
}

footer {
padding: 1em;
}

.bodyList li {
padding-top: 0.5em;
}

Loading

0 comments on commit 4116f5d

Please sign in to comment.