Skip to content

Commit

Permalink
move css import to fix codesandbox
Browse files Browse the repository at this point in the history
  • Loading branch information
aholachek committed Jun 10, 2020
1 parent 336e42b commit 7f50d31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions src/index.css
@@ -1,5 +1,3 @@
@import "~normalize.css";
@import url('https://fonts.googleapis.com/css?family=Karla:400,700');
* {
box-sizing: border-box;
}
Expand All @@ -16,7 +14,7 @@
}

body {
font-family: karla, -apple-system, system-ui, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
font-family: -apple-system, system-ui, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
-webkit-font-smoothing: antialiased;
color: var(--dark-grey);
}
Expand Down
1 change: 1 addition & 0 deletions src/index.js
Expand Up @@ -4,6 +4,7 @@ import AnimatedNavbar from "./AnimatedNavbar"
import DemoControls from "./DemoControls"
import styled from "styled-components"
import "./index.css"
import "normalize.css";

const AppContainer = styled.div`
background: linear-gradient(150deg, #53f 15%, #05d5ff);
Expand Down

0 comments on commit 7f50d31

Please sign in to comment.