mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-08 05:42:34 +02:00
fix(v2): fix footer CSS
This commit is contained in:
parent
6a905dd736
commit
937be4d231
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ function Footer() {
|
||||||
{links && links.length > 0 && (
|
{links && links.length > 0 && (
|
||||||
<div className="row footer__links">
|
<div className="row footer__links">
|
||||||
{links.map((linkItem, i) => (
|
{links.map((linkItem, i) => (
|
||||||
<div key={`linkItem-${i}`} className="col">
|
<div key={i} className="col footer__col">
|
||||||
{linkItem.title != null ? (
|
{linkItem.title != null ? (
|
||||||
<h4 className="footer__title">{linkItem.title}</h4>
|
<h4 className="footer__title">{linkItem.title}</h4>
|
||||||
) : null}
|
) : null}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue