Skip to content

Commit

Permalink
Merge pull request #1461 from AletheiaFact/correct-color-name-and-add…
Browse files Browse the repository at this point in the history
…-arg-in-build-production
  • Loading branch information
thesocialdev authored Nov 18, 2024
2 parents 46b49a2 + f17ce5e commit ac1426d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ jobs:
--build-arg NEXT_PUBLIC_ENVIRONMENT=$ENVIRONMENT \
--build-arg NEXT_PUBLIC_ORY_SDK_URL=$ORY_SDK_URL \
--build-arg NEXT_PUBLIC_ORYCLOUD=$ORYCLOUD \
--build-arg NEXT_PUBLIC_ENABLE_BANNER_DONATION=$ENABLE_BANNER_DONATION \
--build-arg NEXT_PUBLIC_RECAPTCHA_SITEKEY=${{ secrets.NEXT_PUBLIC_RECAPTCHA_SITEKEY }} \
-t "$ECR_REGISTRY"/"$IMAGE":"$GITHUB_SHA" .
docker tag "$ECR_REGISTRY"/"$IMAGE":"$GITHUB_SHA" "$ECR_REGISTRY"/"$IMAGE":latest
Expand Down
4 changes: 2 additions & 2 deletions src/components/Home/DonationBanner.style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import colors from "../../styles/colors";
import { Col } from "antd";

const DonationBannerStyle = styled(Col)`
background-color: ${colors.blueQuartiary};
background-color: ${colors.quartiary};
.show-banner {
color: ${colors.white};
Expand All @@ -29,7 +29,7 @@ const DonationBannerStyle = styled(Col)`
.banner-content > h1 {
width: 100%;
color: ${colors.blackPrimary};
color: ${colors.black};
font-size: 26px;
line-height: 34px;
font-weight: 800;
Expand Down

0 comments on commit ac1426d

Please sign in to comment.