Merge pull request #1690 from Safelite/CSR-1922-checkmark-in-header-misaligned

CSR-1922 fix misalignment of green checkmark on confirmation page.
This commit is contained in:
bmauger 2024-01-18 13:17:43 -05:00 committed by GitHub
commit 41ebfeee1b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -387,7 +387,9 @@ export default {
text-decoration: underline;
}
.header-container {
text-align: center;
display: flex;
align-items: center;
justify-content: center;
padding: 1rem 0 1.5rem 0;
p {
@ -395,6 +397,11 @@ export default {
font-weight: 400;
font-size: 1.25rem;
color: $black;
margin: 0;
}
img {
margin-right: 0.5rem;
}
}