Merge pull request #1278 from prymitive/fix-padding

fix(ui): fix padding on error page
This commit is contained in:
Łukasz Mierzwa
2019-12-20 21:20:08 +00:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ exports[`<FatalError /> matches snapshot 1`] = `
>
</path>
</svg>
<p class=\\"lead text-white bg-secondary px-1 py-3 rounded text-wrap text-break\\">
<p class=\\"lead text-white bg-secondary p-3 rounded text-wrap text-break\\">
foo bar
</p>
</div>

View File

@@ -20,7 +20,7 @@ class FatalError extends Component {
icon={faExclamationCircle}
className="screen-center-icon-big text-danger mb-4"
/>
<p className="lead text-white bg-secondary px-1 py-3 rounded text-wrap text-break">
<p className="lead text-white bg-secondary p-3 rounded text-wrap text-break">
{message}
</p>
</div>