Skip to content

Commit d5b77d7

Browse files
committed
change a color
1 parent 513857c commit d5b77d7

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

src/components/Layout/index.scss

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1119,3 +1119,16 @@ svg.MarketingDivide {
11191119
.text-center2 {
11201120
text-align: center;
11211121
}
1122+
1123+
// ----------------------------------------
1124+
// Sponsor Page
1125+
1126+
.tier-row {
1127+
}
1128+
1129+
.tier {
1130+
}
1131+
1132+
.tier a {
1133+
color: #4a68b4;
1134+
}

src/components/MarketingTier.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import React from "react";
33
export default function MarketingTiers({ children }) {
44
return (
55
<div
6+
className="tier-row"
67
style={{
78
display: "flex",
89
flexDirection: "row",
@@ -21,6 +22,7 @@ export class Tier extends React.Component {
2122

2223
return (
2324
<div
25+
className="tier"
2426
style={{
2527
display: "flex",
2628
flexDirection: "column",
@@ -40,10 +42,10 @@ export class Tier extends React.Component {
4042
<span style={{ fontSize: "1.5rem" }}>{price}</span>{" "}
4143
<span style={{ fontSize: "0.8rem" }}>/month</span>
4244
</span>
43-
<div class="tc">
44-
<a class="button--solid" href={href}>
45+
<div className="tc">
46+
<a className="button--solid" href={href}>
4547
Join on GitHub Sponsors{" "}
46-
<span class="fas fa-fw fa-external-link-square-alt" />
48+
<span className="fas fa-fw fa-external-link-square-alt" />
4749
</a>
4850
</div>
4951
<h4>{tagline}</h4>

0 commit comments

Comments
 (0)