Skip to content

Commit

Permalink
Adds new logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Patty committed Feb 13, 2020
1 parent 8756d23 commit 58b84ad
Show file tree
Hide file tree
Showing 3 changed files with 1,846 additions and 1 deletion.
9 changes: 8 additions & 1 deletion demo-site/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import ReactDOM from "react-dom";
import styled from "@emotion/styled";
import generateBarcode from "../dist/index.js";
import Tape from "./Tape";
import logo from './logo.svg'
import "normalize.css";
import "./index.css";

Expand All @@ -17,7 +18,8 @@ const App = () => {
return (
<Wrapper>
<Column>
<Title>Barcode Generator</Title>
{/* <Title>Barcode Generator</Title> */}
<Logo src={logo} />
<PerspectiveWrapper>
<Row>
<Input
Expand Down Expand Up @@ -50,6 +52,11 @@ const Wrapper = styled("div")`
width: 100%;
`;

const Logo = styled('img')`
margin-bottom: 30px;
width: 260px;
`

const Column = styled("div")`
display: flex;
flex-direction: column;
Expand Down
1 change: 1 addition & 0 deletions demo-site/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 58b84ad

Please sign in to comment.