Skip to content

Commit 03cce34

Browse files
Merge pull request #253 from 47degrees/paolo-252-adds-microsite-theme
Adds microsite theme to keep website style
2 parents 56a9970 + bcf69f9 commit 03cce34

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ before_install:
1717

1818
install:
1919
- rvm use 2.6.5 --install --fuzzy
20-
- gem install sass
2120
- gem install jekyll -v 4
2221

2322
stages:

docs/src/main/resources/microsite/static/_sass/_header.scss

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
font-size: 14px;
2929
line-height: 21px;
3030
transition: color $base-duration $base-timing, background-color $base-duration $base-timing;
31+
text-decoration: none;
3132

3233
&:visited {
3334
color: $brand-secondary;

docs/src/main/resources/microsite/static/_sass/_navigation.scss

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
.nav-brand {
3030
display: flex;
3131
align-items: center;
32+
text-decoration: none;
3233

3334
&:visited,
3435
&:hover,
@@ -61,6 +62,7 @@
6162
padding-bottom: 4px;
6263
color: $brand-secondary;
6364
font-size: 14px;
65+
text-decoration: none;
6466

6567
&:hover {
6668
text-decoration: none;

project/ProjectPlugin.scala

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ object ProjectPlugin extends AutoPlugin {
4040
micrositeExternalLayoutsDirectory := (resourceDirectory in Compile).value / "microsite" / "_layouts",
4141
micrositeExternalIncludesDirectory := (resourceDirectory in Compile).value / "microsite" / "_includes",
4242
micrositeDataDirectory := (resourceDirectory in Compile).value / "microsite" / "_data",
43+
micrositeTheme := "pattern",
4344
micrositePalette := Map(
4445
"brand-primary" -> "#DD4949",
4546
"brand-secondary" -> "#104051",

0 commit comments

Comments
 (0)