Skip to content

Commit

Permalink
remove style from basix template
Browse files Browse the repository at this point in the history
  • Loading branch information
ahennr committed Sep 1, 2017
1 parent 1ab8a11 commit b1176ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
5 changes: 0 additions & 5 deletions example-templates/basic.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/default.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
<script>/*global hljs*/ hljs.initHighlightingOnLoad();</script>
<style>
.userchip {
margin: 10px;
}
</style>
</head>
<body>
<h2>{{ title }}</h2>
Expand Down
8 changes: 6 additions & 2 deletions examples/userChip.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ import UserChip from '../src/UserChip/UserChip.jsx';

render(
<div>
<UserChip userName="John Doe"/>
<UserChip userName="John Doe" imageSrc="./user.png"/>
<div>
<UserChip userName="John Doe"/>
</div>
<div style={{marginTop: '10px'}}>
<UserChip userName="John Doe" imageSrc="./user.png"/>
</div>
</div>,
document.getElementById('exampleContainer')
);

0 comments on commit b1176ed

Please sign in to comment.