Add some padding to the empty message

This commit is contained in:
Ray Schamp 2015-10-24 12:38:23 -04:00
parent 0b26be7036
commit 5865b6d619
2 changed files with 3 additions and 0 deletions
src
main.scss
views/components

View file

@ -58,6 +58,7 @@ a:hover {
border: 1px solid $bg-blue-accent;
border-radius: 5px;
background-color: $bg-blue;
padding: 10px;
text-align: center;
line-height: 2rem;
color: $type-gray;

View file

@ -35,6 +35,8 @@ var Components = React.createClass({
</Box>
<h1>{'What\'s Happening??'}</h1>
<Activity />
<h1>{'Nothing!!!'}</h1>
<Activity items={[]} />
</div>
);
}