Adjust explorer banner margins (#11233)

This commit is contained in:
Justin Starry 2020-07-28 13:20:25 +08:00 committed by GitHub
parent ed01591be6
commit bafb2e6e84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -40,7 +40,7 @@ export default function Banner() {
if (estimate || start || end) {
timeframe = (
<div>
<hr className="text-gray-500 w-100 mt-0 mb-3 opacity-50" />
<hr className="text-gray-500 w-100 my-3 opacity-50" />
{estimate && (
<h5 className="font-sm text-gray-200">
<span className="text-uppercase">Estimated Duration: </span>
@ -67,7 +67,7 @@ export default function Banner() {
<div className="bg-danger text-white">
<div className="container">
<div className="d-flex flex-column align-items-center justify-content-center text-center py-3">
<h3 className="mb-3">
<h3 className="mb-0 line-height-md">
<span className="fe fe-alert-circle mr-2"></span>
{message}
</h3>

View File

@ -146,3 +146,7 @@ h4.slot-pill {
.w-1 {
width: 1%;
}
.line-height-md {
line-height: 1.5rem;
}