Fix link color on home page (#9611)
* Fix learn-callout theming * Fix link color in cloud-offerings-list
This commit is contained in:
parent
ab029e8aca
commit
e90b77b337
|
@ -3,7 +3,7 @@ import Button from '@hashicorp/react-button'
|
|||
export default function CloudOfferingsList({ offerings }) {
|
||||
return (
|
||||
<ul className="g-cloud-offerings-list">
|
||||
{offerings.map(offering => (
|
||||
{offerings.map((offering) => (
|
||||
<li key={offering.title}>
|
||||
<a
|
||||
href={offering.link.url}
|
||||
|
@ -17,7 +17,7 @@ export default function CloudOfferingsList({ offerings }) {
|
|||
<Button
|
||||
title={offering.link.text}
|
||||
linkType={offering.link.type}
|
||||
theme={{ variant: 'tertiary' }}
|
||||
theme={{ variant: 'tertiary', brand: 'consul' }}
|
||||
url={offering.link.url}
|
||||
/>
|
||||
</a>
|
||||
|
|
|
@ -137,6 +137,7 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.brand-consul {
|
||||
& .content label {
|
||||
|
@ -165,4 +166,3 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue