Skip to content

Commit

Permalink
#19 fixing safari bug and removing warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
samgildea committed Mar 30, 2021
1 parent 09829a2 commit 6556a66
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 0 additions & 2 deletions src/components/footer/footer.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import React from "react"
import styled from "styled-components"
import dimensions from "../../style/dimensions"
import { StaticQuery, graphql } from "gatsby"

import {
Expand Down
1 change: 0 additions & 1 deletion src/pages/UseCases.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { graphql } from "gatsby"

import React from "react"
import Layout from "../components/layout"

export default function UseCasesPage({ data }) {
const useCasesPageData = data.prismicUseCasesPage.data
Expand Down
2 changes: 0 additions & 2 deletions src/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import React from "react"
import { graphql } from "gatsby"
import Layout from "../components/layout"
import styled from "styled-components"
import dimensions from "../style/dimensions"
import Homepage from "../components/homepage/index"

export default function Home({ data }) {
Expand Down
13 changes: 9 additions & 4 deletions src/style/global.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
html, body
{
margin: 0px; padding: 0px
}
html,
body {
margin: 0px;
padding: 0px;
}

* {
min-height: 0vw;
}

0 comments on commit 6556a66

Please sign in to comment.