Skip to content

Commit b652a4c

Browse files
Add PR link
1 parent d58ebd4 commit b652a4c

File tree

2 files changed

+20
-11
lines changed

2 files changed

+20
-11
lines changed

src/App.fs

+8-2
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,14 @@ let view (model:Model) dispatch =
116116
Column.Width (Screen.All, Column.IsThreeFifths)
117117
Column.Offset (Screen.All, Column.IsOneFifth)
118118
] [
119-
Heading.h4 [Heading.CustomClass "intro-text"] [
120-
str "Find resources from the community!"
119+
div [Class "intro-text"] [
120+
Heading.h4 [] [str "Find resources from the community!"]
121+
Heading.h6 [Heading.IsSubtitle] [
122+
str "Let's grow together. Send us a PR to "
123+
a [Href "https://github.com/fable-compiler/community/edit/master/public/community.json"] [str "add your awesome project"]
124+
str "."
125+
]
126+
121127
]
122128
searchBox model dispatch
123129
ul [Class "resource-list"]

src/style.scss

+12-9
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,16 @@ body {
3030
}
3131

3232
.main-section {
33-
flex: 1 0 auto;
34-
.intro-text {
35-
color: darken($fable-blue, 10%);
36-
}
37-
.resource-item {
38-
margin: 20px 0;
39-
}
33+
flex: 1 0 auto;
34+
.intro-text {
35+
.title.is-4 {
36+
color: darken($fable-blue, 15%);
37+
}
38+
margin-bottom: 40px;
39+
}
40+
.resource-item {
41+
margin: 20px 0;
42+
}
4043
}
4144

4245
.footer {
@@ -87,7 +90,7 @@ body {
8790
.navbar-end {
8891
// background-color: $body-background;
8992
.navbar-item:hover {
90-
color: $fable-blue !important;
91-
}
93+
color: $fable-blue !important;
94+
}
9295
}
9396
}

0 commit comments

Comments
 (0)