Skip to content

Commit

Permalink
fix default font size for headers in the tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
Bloomca committed Dec 16, 2017
1 parent 9d9a709 commit cdf64ea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "contentful-wizard",
"version": "0.0.1-alpha-4",
"version": "0.0.1-alpha-5",
"description": "This is a library to add interactive content explorer to your contentful-powered project.",
"jsnext:main": "lib/es2015/index.js",
"module": "lib/es2015/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/popup/renderAssets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function renderAssets({
text: "Assets on the page:",
style: {
lineHeight: "1.31",
fontSize: "1.17",
fontSize: "1.17em",
marginTop: "0",
marginBottom: "10px"
}
Expand Down
2 changes: 1 addition & 1 deletion src/popup/renderContentTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function renderContentTypes({
text: "Content types on the page:",
style: {
lineHeight: "1.31",
fontSize: "1.17",
fontSize: "1.17em",
marginTop: "0",
marginBottom: "10px"
}
Expand Down
2 changes: 1 addition & 1 deletion src/popup/renderEntries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function renderEntries({
text: `${contentTypeData.name} entries:`,
style: {
lineHeight: "1.31",
fontSize: "1.17",
fontSize: "1.17em",
marginTop: "0",
marginBottom: "10px"
}
Expand Down

0 comments on commit cdf64ea

Please sign in to comment.