Skip to content

Commit

Permalink
0.1.6
Browse files Browse the repository at this point in the history
- fixes a styling issue when trying to display an assertion without a parent as the first item in the list
  • Loading branch information
gabrielcsapo committed Oct 13, 2017
1 parent e8f0d64 commit 19ad4d5
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.1.6 (10/17/2017)

- fixes a styling issue when trying to display an assertion without a parent as the first item in the list

# 0.1.5 (10/17/2017)

- moves font-awesome to dependencies
Expand Down
2 changes: 1 addition & 1 deletion docs/example/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tap-html",
"version": "0.1.5",
"version": "0.1.6",
"description": "📊 an html tap reporter",
"author": "Gabriel J. Csapo <[email protected]>",
"license": "ISC",
Expand Down
2 changes: 1 addition & 1 deletion src/plan.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Plan extends React.Component {
style['paddingLeft'] = '15px';
style['paddingBottom'] = '25px';
} else {
style['paddingTop'] = '10px';
style['marginTop'] = '60px';
style['paddingBottom'] = '10px';
}

Expand Down
19 changes: 13 additions & 6 deletions src/style.css
Original file line number Diff line number Diff line change
@@ -1,30 +1,37 @@
/* Overrides */

html, body {
margin: 0;
padding: 0;
font-family: 'Open Sans', Helvetica, sans-serif;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: 'Open Sans', Helvetica, sans-serif;
width: 100%;
height: 100%;
}

h1, h3 {
margin-bottom: 0px;
margin-top: 0px;
}

.navbar {
position: fixed;
top: 0;
}

.navbar-title {
margin-top: 25px !important;
}

#root {
padding-bottom: 60px;
padding-bottom: 60px;
}

.list, .list-item {
border-radius: 0 !important;
border-right: 0 !important;
border-left: 0 !important;
}

.badge {
height: 25px;
width: 25px;
Expand Down

0 comments on commit 19ad4d5

Please sign in to comment.