diff --git a/src/components/Footer/Footer.module.css b/src/components/Footer/Footer.module.css index 5bc0ff6..27715cc 100644 --- a/src/components/Footer/Footer.module.css +++ b/src/components/Footer/Footer.module.css @@ -8,12 +8,12 @@ flex-direction: column; align-items: center; - padding: 180px 0 100px; + padding: 172px 0 99px; } section { display: flex; - row-gap: 68px; + row-gap: 61px; flex-direction: column; @@ -32,13 +32,13 @@ border-top: 1px solid rgba(253, 253, 255, 0.2); margin-bottom: 0; - margin-top: 27px; + margin-top: 20px; padding-top: 20px; @media (min-width: 768px) { width: 80%; - margin-top: 50px; + margin-top: 43px; padding-top: 48px; } } @@ -46,25 +46,25 @@ .leftMenu { display: flex; - color: var(--bg-100); - font-size: 16px; - line-height: 20px; vertical-align: middle; row-gap: 10px; flex-direction: column; padding-left: 4px; + li { + a, + a:visited { + color: var(--bg-100); + } + } + @media (min-width: 768px) { column-gap: 80px; - flex-direction: row; + align-items: center; padding-left: 0px; } - - & > li { - height: 20px; - } } .rightMenu { @@ -72,9 +72,11 @@ align-items: center; column-gap: 40px; - & > li > a { - display: flex; - align-items: center; - justify-content: center; + li { + a { + display: flex; + align-items: center; + justify-content: center; + } } } diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx index e622b5e..5d6987a 100644 --- a/src/components/Footer/Footer.tsx +++ b/src/components/Footer/Footer.tsx @@ -1,3 +1,4 @@ +import Link from "../Link/Link"; import styles from "./Footer.module.css"; export default function Footer() { @@ -47,9 +48,14 @@ export default function Footer() { @@ -57,9 +63,9 @@ export default function Footer() {