Skip to content

Commit

Permalink
fix: fonts path in scss
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Meier <[email protected]>
  • Loading branch information
astromechza committed Jul 10, 2024
1 parent 9b34ac2 commit 0453d0b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions assets/scss/_fonts.scss
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
@font-face {
font-family: Graphik;
font-weight: 300;
src: url("/fonts/Graphik/GraphikLight.otf") format("opentype");
src: url("../fonts/Graphik/GraphikLight.otf") format("opentype");
}

@font-face {
font-family: Graphik;
font-weight: 400;
src: url("/fonts/Graphik/GraphikRegular.otf") format("opentype");
src: url("../fonts/Graphik/GraphikRegular.otf") format("opentype");
}

@font-face {
font-family: Graphik;
font-weight: 500;
src: url("/fonts/Graphik/GraphikMedium.otf") format("opentype");
src: url("../fonts/Graphik/GraphikMedium.otf") format("opentype");
}

@font-face {
font-family: Graphik;
font-weight: 600;
src: url("/fonts/Graphik/GraphikSemibold.otf") format("opentype");
src: url("../fonts/Graphik/GraphikSemibold.otf") format("opentype");
}

@font-face {
font-family: Graphik;
font-weight: 700;
src: url("/fonts/Graphik/GraphikBold.otf") format("opentype");
src: url("../fonts/Graphik/GraphikBold.otf") format("opentype");
}

@font-face {
font-family: IBMPlexMono;
font-weight: 400;
src: url("/fonts/IBMPlexMono/IBMPlexMono-Regular.ttf") format("truetype");
src: url("../fonts/IBMPlexMono/IBMPlexMono-Regular.ttf") format("truetype");
}
4 changes: 2 additions & 2 deletions config.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
baseURL = "https://docs.score.dev"
baseURL = "https://docs.score.dev/"
title = "Score"
description = "Score provides a developer-centric and platform-agnostic Workload specification to improve developer productivity and experience. Score eliminates configuration management between local and remote environments."

Expand Down Expand Up @@ -107,7 +107,7 @@ version = "0.0"

# A link to latest version of the docs. Used in the "version-banner" partial to
# point people to the main doc site.
url_latest_version = "https://docs.score.dev/"
url_latest_version = ""

# Repository configuration (URLs for in-page links to opening issues and suggesting changes)
github_repo = "https://github.com/score-spec/docs"
Expand Down

0 comments on commit 0453d0b

Please sign in to comment.