Skip to content

Commit

Permalink
Change styling for replies
Browse files Browse the repository at this point in the history
  • Loading branch information
OrKoN committed Nov 2, 2018
1 parent 57cff3b commit 304e676
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 39 deletions.
45 changes: 13 additions & 32 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions src/components/CommentButton.js
Expand Up @@ -13,12 +13,11 @@ export class CommentButton extends Component {
background: transparent;
border: 0;
padding: 0;
border-bottom: 1px dotted ${theme.buttons.secondaryColor};
cursor: pointer;
text-transform: capitalize;
}
:hover {
color: ${theme.buttons.secondaryColorAlt};
border-bottom: 1px dotted ${theme.buttons.secondaryColorAlt};
}
:focus {
outline: ${theme.outlineStyle};
Expand Down
6 changes: 2 additions & 4 deletions src/components/CommentContent.js
Expand Up @@ -16,9 +16,7 @@ export class CommentContent extends Component {
> div > *:first-child {
margin-top: 0;
}
> div > *:last-child {
margin-bottom: 0;
}
ul {
box-sizing: inherit;
margin: 0;
Expand Down Expand Up @@ -47,7 +45,7 @@ export class CommentContent extends Component {
background-color: transparent;
}
p {
margin: 0.5em 0px;
margin: 0.5em 0;
box-sizing: inherit;
}
pre {
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Expand Up @@ -10,7 +10,7 @@ Object.keys(localizedBundles).forEach((bundleKey) => {
});

module.exports = function(env, args) {
const skipReports = args.skipReports || true;
const skipReports = args.skipReports !== 'false';
const locale = args.locale || null;
const host = 'http://localhost';
const defineParams = {
Expand Down

0 comments on commit 304e676

Please sign in to comment.