Skip to content

Commit a2610df

Browse files
authored
Fix site url link color (typescript-cheatsheets#223)
1 parent e6b3a49 commit a2610df

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

website/siteConfig.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ const siteConfig = {
5151
colors: {
5252
primaryColor: "#222222",
5353
secondaryColor: "#171717",
54+
urlColor: "#138cd3",
5455
},
5556

5657
/* Custom fonts for website */

website/static/css/custom.css

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,14 @@
3636
flex-grow: 1;
3737
}
3838

39-
/* TODO: get it from siteConfig */
4039
.nav-footer {
41-
background: #222;
40+
background: $primaryColor;
41+
}
42+
43+
.container a:not(.button) {
44+
color: $urlColor;
45+
}
46+
47+
.container a:not(.button):hover {
48+
opacity: 0.75;
4249
}

0 commit comments

Comments
 (0)