move stylesheet back to html

This commit is contained in:
Brian Hicks 2019-04-01 13:05:15 -05:00
parent e079b571d2
commit 9a22ebb46e
2 changed files with 4 additions and 10 deletions

View File

@ -21,14 +21,7 @@ import Update exposing (..)
view : Model -> Document Msg
view model =
{ title = "Style Guide"
, body =
[ view_ model |> Html.toUnstyled
, RootHtml.node "link"
[ Html.Attributes.href "https://fonts.googleapis.com/css?family=Muli:400,400i,600,600i,700,700i,800,800i,900,900i"
, Html.Attributes.rel "stylesheet"
]
[]
]
, body = [ view_ model |> Html.toUnstyled ]
}

View File

@ -1,9 +1,10 @@
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>NoRedInk style guide</title>
<meta charset="utf-8">
<title>NoRedInk style guide</title>
<link href="assets/reset.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Muli:400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
</head>
<body>
<div id="svg-target"></div>