Skip to content

Commit

Permalink
Merge pull request #879 from nojaf/clean-up
Browse files Browse the repository at this point in the history
Clean up
  • Loading branch information
nojaf authored Nov 22, 2023
2 parents d24a4e2 + d4f97c7 commit 095678a
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions docs/content/fsdocs-default.css
Original file line number Diff line number Diff line change
Expand Up @@ -1114,6 +1114,26 @@ span[onmouseout] {
}
}

.fsdocs-source-link {
display: none;
padding: 0 var(--spacing-100);
color: var(--text-color);
cursor: pointer;
height: var(--font-500);
width: var(--font-500);
margin: 0 var(--spacing-50);

&:hover {
color: var(--primary);
}
}

@media screen and (min-width: 768px) {
.fsdocs-source-link {
display: block;
}
}

/* Search */
::backdrop {
background-color: #020202;
Expand Down
2 changes: 1 addition & 1 deletion docs/styling.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ The default template is heavily based
on [CSS variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties). These can easily be
override to customize the look and feel of the default theme.
A full list of the overrideable variables can be
found [here](https://github.com/fsprojects/FSharp.Formatting/blob/main/docs/content/fsdocs-theme.css).
found [here](https://github.com/fsprojects/FSharp.Formatting/blob/main/docs/content/fsdocs-default.css).

```css
:root {
Expand Down

0 comments on commit 095678a

Please sign in to comment.