Fix link color on home page (#9611)

* Fix learn-callout theming

* Fix link color in cloud-offerings-list
This commit is contained in:
Zachary Shilton 2021-01-21 13:15:42 -05:00 committed by GitHub
parent ab029e8aca
commit e90b77b337
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 22 deletions

View File

@ -3,7 +3,7 @@ import Button from '@hashicorp/react-button'
export default function CloudOfferingsList({ offerings }) { export default function CloudOfferingsList({ offerings }) {
return ( return (
<ul className="g-cloud-offerings-list"> <ul className="g-cloud-offerings-list">
{offerings.map(offering => ( {offerings.map((offering) => (
<li key={offering.title}> <li key={offering.title}>
<a <a
href={offering.link.url} href={offering.link.url}
@ -17,7 +17,7 @@ export default function CloudOfferingsList({ offerings }) {
<Button <Button
title={offering.link.text} title={offering.link.text}
linkType={offering.link.type} linkType={offering.link.type}
theme={{ variant: 'tertiary' }} theme={{ variant: 'tertiary', brand: 'consul' }}
url={offering.link.url} url={offering.link.url}
/> />
</a> </a>

View File

@ -137,6 +137,7 @@
} }
} }
} }
}
&.brand-consul { &.brand-consul {
& .content label { & .content label {
@ -165,4 +166,3 @@
} }
} }
} }
}