Skip to content

Commit

Permalink
Update css
Browse files Browse the repository at this point in the history
  • Loading branch information
cecton committed Mar 31, 2022
1 parent 741e0c5 commit 7ff2aa7
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 14 deletions.
24 changes: 10 additions & 14 deletions examples/immutable/index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Yew • TodoMVC</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/base.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/index.css"
/>
</head>
<body></body>

<head>
<meta charset="utf-8" />
<title>Yew • Immutable</title>
<link data-trunk rel="scss" href="index.scss"/>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap" rel="stylesheet">
</head>

<body></body>

</html>
11 changes: 11 additions & 0 deletions examples/immutable/index.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
$font-stack: Roboto, sans-serif;
$primary-color: #f5f5f5;

body {
font: 100% $font-stack;
color: black;
background-color: $primary-color;
margin: 0 auto;
min-width: 230px;
max-width: 550px;
}

0 comments on commit 7ff2aa7

Please sign in to comment.