Skip to content

Commit

Permalink
Fix link color
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeBellTMH committed Jul 19, 2021
1 parent 954b4a8 commit cc49447
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 55 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
"hostingS3AndCloudFrontHostingBucketName": {
"Type": "String",
"Default": "hostingS3AndCloudFrontHostingBucketName"
},
"deploymentBucketName": {
"Type": "String"
},
"s3Key": {
"Type": "String"
}
},
"Conditions": {
Expand Down Expand Up @@ -69,8 +75,12 @@
"Runtime": "nodejs12.x",
"Timeout": "25",
"Code": {
"S3Bucket": "themeetinghouse-tmhprod-20191031042029-deployment",
"S3Key": "amplify-builds/socialBotHandler-65767370555949767a69-build.zip"
"S3Bucket": {
"Ref": "deploymentBucketName"
},
"S3Key": {
"Ref": "s3Key"
}
}
}
},
Expand Down
52 changes: 1 addition & 51 deletions amplify/backend/function/socialBotHandler/src/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion amplify/team-provider-info.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@
"deploymentBucketName": "themeetinghouse-tmhprod-20191031042029-deployment",
"s3Key": "amplify-builds/emailHomeChurch-53536546627839364e74-build.zip"
},
"socialBotHandler": {},
"socialBotHandler": {
"deploymentBucketName": "themeetinghouse-tmhprod-20191031042029-deployment",
"s3Key": "amplify-builds/socialBotHandler-356435453137546e4130-build.zip"
},
"tmhF1HomeChurch": {
"userPoolId": "us-east-1_KiJzP2dH5",
"userPoolWebClientId": "3pf37ngd57hsk9ld12aha9bm2f",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Link/Link.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ a.button-link {
}

a {
color: theme.$onyxblacktext;
color: theme.$onyxblacktext !important;
text-decoration: underline;
text-underline-offset: 0.25em;

Expand Down

0 comments on commit cc49447

Please sign in to comment.