fix(ui): fix padding on error page

This commit is contained in:
Łukasz Mierzwa
2019-12-20 20:51:03 +00:00
parent 17b4172904
commit ddd3a448a3
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>