Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#435] center footer to look the same as hole page #436

Merged
merged 1 commit into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions frontend/src/components/Footer/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ function Footer() {
return (
<footer className="bg-dark border-top border-secondary pt-4 pb-5">
<Container>
<Row className="gy-2 row-cols-1 row-cols-sm-2 row-cols-md-3 row pt-3">
<Col>
<Row className="gy-2 gx-5 row-cols-1 row-cols-sm-2 row-cols-md-3 row pt-3">
<Col md={5} lg={5}>
<Nav as="ul" className="flex-column align-items-start">
<li>
<Nav.Link
Expand Down Expand Up @@ -89,7 +89,7 @@ function Footer() {
<span className="d-block">{t('footer.ogrn')}</span>
</p>
</Col>
<Col>
<Col md={5} lg={5}>
<div className="fw-bold mt-3 mb-2 text-white">
{t('footer.doc')}
</div>
Expand Down Expand Up @@ -124,7 +124,9 @@ function Footer() {
eventKey="licenseAgreement"
to="/licenseAgreement"
>
{t('footer.licenseAgreement')}
<span style={{ paddingRight: '1.25rem' }}>
{t('footer.licenseAgreement')}
</span>
</Nav.Link>
</li>
)}
Expand Down Expand Up @@ -241,7 +243,7 @@ function Footer() {
</Dropdown.Menu>
</Dropdown> */}
</Col>
<Col>
<Col md={12} lg={2}>
<div className="fw-bold mt-3 mb-2 text-white">
{t('footer.project')}
</div>
Expand Down
Loading
Loading