diff options
-rw-r--r-- | public/static/main.css | 2 | ||||
-rw-r--r-- | public/templates/embed.html | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/public/static/main.css b/public/static/main.css index b51a997..e92a177 100644 --- a/public/static/main.css +++ b/public/static/main.css @@ -1,6 +1,6 @@ @font-face { font-family: merriweather; - src: url("/static/merriweather.ttf"); + src: url("static/merriweather.ttf"); } :root { diff --git a/public/templates/embed.html b/public/templates/embed.html index d1fbf4a..312695c 100644 --- a/public/templates/embed.html +++ b/public/templates/embed.html @@ -3,9 +3,9 @@ <head> <meta charset="utf-8"> <base target="_parent"> - <link rel="stylesheet" href="/static/main.css"> + <link rel="stylesheet" href="static/main.css"> {% if theme == "white" %} - <link rel="stylesheet" href="/static/white.css"> + <link rel="stylesheet" href="static/white.css"> {% endif %} </head> <body> |