Skip to content

Commit 095678a

Browse files
authored
Merge pull request #879 from nojaf/clean-up
Clean up
2 parents d24a4e2 + d4f97c7 commit 095678a

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

docs/content/fsdocs-default.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1114,6 +1114,26 @@ span[onmouseout] {
11141114
}
11151115
}
11161116

1117+
.fsdocs-source-link {
1118+
display: none;
1119+
padding: 0 var(--spacing-100);
1120+
color: var(--text-color);
1121+
cursor: pointer;
1122+
height: var(--font-500);
1123+
width: var(--font-500);
1124+
margin: 0 var(--spacing-50);
1125+
1126+
&:hover {
1127+
color: var(--primary);
1128+
}
1129+
}
1130+
1131+
@media screen and (min-width: 768px) {
1132+
.fsdocs-source-link {
1133+
display: block;
1134+
}
1135+
}
1136+
11171137
/* Search */
11181138
::backdrop {
11191139
background-color: #020202;

docs/styling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ The default template is heavily based
8888
on [CSS variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties). These can easily be
8989
override to customize the look and feel of the default theme.
9090
A full list of the overrideable variables can be
91-
found [here](https://github.com/fsprojects/FSharp.Formatting/blob/main/docs/content/fsdocs-theme.css).
91+
found [here](https://github.com/fsprojects/FSharp.Formatting/blob/main/docs/content/fsdocs-default.css).
9292

9393
```css
9494
:root {

0 commit comments

Comments
 (0)