Skip to content

Commit 2bd8d55

Browse files
committed
change color & use legency ssl
1 parent 5ea3c74 commit 2bd8d55

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"url": "^0.11.0"
3939
},
4040
"scripts": {
41-
"start": "react-app-rewired start",
41+
"start": "react-app-rewired --openssl-legacy-provider start",
4242
"build": "react-app-rewired build && rm -rf docs && mv build docs",
4343
"serve": "serve -s docs -l 4000",
4444
"test": "react-app-rewired test",

src/Homepage.tsx

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,10 @@ class Homepage extends Component<IProps, IState> {
137137
href="https://www.fsf.org/"
138138
target="_blank"
139139
size="huge"
140-
color="teal"
140+
style={{
141+
color: '#F8F5D6',
142+
backgroundColor: '#80D1C8',
143+
}}
141144
>
142145
Check Them Out
143146
</Button>
@@ -228,7 +231,10 @@ class Homepage extends Component<IProps, IState> {
228231
target="_blank"
229232
size="large"
230233
rel="noreferrer"
231-
color="teal"
234+
style={{
235+
color: '#F8F5D6',
236+
backgroundColor: '#80D1C8',
237+
}}
232238
>
233239
Read More
234240
</Button>
@@ -264,7 +270,10 @@ class Homepage extends Component<IProps, IState> {
264270
href="https://github.com/ArchLinuxStudio/blockchain-election-sample"
265271
target="_blank"
266272
size="large"
267-
color="teal"
273+
style={{
274+
color: '#F8F5D6',
275+
backgroundColor: '#80D1C8',
276+
}}
268277
>
269278
Learn More
270279
</Button>
@@ -280,7 +289,10 @@ class Homepage extends Component<IProps, IState> {
280289
href="https://github.com/ArchLinuxStudio/blockchain-election-react"
281290
target="_blank"
282291
size="large"
283-
color="teal"
292+
style={{
293+
color: '#F8F5D6',
294+
backgroundColor: '#80D1C8',
295+
}}
284296
>
285297
Learn More
286298
</Button>

src/HomepageHeading.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ class HomepageHeading extends Component<IProps, IState> {
4848
target="_blank"
4949
primary
5050
size="huge"
51+
style={{
52+
color: '#F8F5D6',
53+
backgroundColor: '#80D1C8',
54+
}}
5155
>
5256
Github
5357
<Icon name="arrow right" />

0 commit comments

Comments
 (0)