Skip to content

Commit 19ad4d5

Browse files
committed
0.1.6
- fixes a styling issue when trying to display an assertion without a parent as the first item in the list
1 parent e8f0d64 commit 19ad4d5

File tree

5 files changed

+20
-9
lines changed

5 files changed

+20
-9
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.1.6 (10/17/2017)
2+
3+
- fixes a styling issue when trying to display an assertion without a parent as the first item in the list
4+
15
# 0.1.5 (10/17/2017)
26

37
- moves font-awesome to dependencies

docs/example/index.html

+1-1
Large diffs are not rendered by default.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tap-html",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"description": "📊 an html tap reporter",
55
"author": "Gabriel J. Csapo <[email protected]>",
66
"license": "ISC",

src/plan.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Plan extends React.Component {
2222
style['paddingLeft'] = '15px';
2323
style['paddingBottom'] = '25px';
2424
} else {
25-
style['paddingTop'] = '10px';
25+
style['marginTop'] = '60px';
2626
style['paddingBottom'] = '10px';
2727
}
2828

src/style.css

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,37 @@
11
/* Overrides */
2+
23
html, body {
3-
margin: 0;
4-
padding: 0;
5-
font-family: 'Open Sans', Helvetica, sans-serif;
6-
width: 100%;
7-
height: 100%;
4+
margin: 0;
5+
padding: 0;
6+
font-family: 'Open Sans', Helvetica, sans-serif;
7+
width: 100%;
8+
height: 100%;
89
}
10+
911
h1, h3 {
1012
margin-bottom: 0px;
1113
margin-top: 0px;
1214
}
15+
1316
.navbar {
1417
position: fixed;
1518
top: 0;
1619
}
20+
1721
.navbar-title {
1822
margin-top: 25px !important;
1923
}
24+
2025
#root {
21-
padding-bottom: 60px;
26+
padding-bottom: 60px;
2227
}
28+
2329
.list, .list-item {
2430
border-radius: 0 !important;
2531
border-right: 0 !important;
2632
border-left: 0 !important;
2733
}
34+
2835
.badge {
2936
height: 25px;
3037
width: 25px;

0 commit comments

Comments
 (0)