diff --git a/src/components/Footer/footer.module.scss b/src/components/Footer/footer.module.scss new file mode 100644 index 0000000..d9fc5e7 --- /dev/null +++ b/src/components/Footer/footer.module.scss @@ -0,0 +1,66 @@ +.conteiner-footer{ + .conteiner-NewsLetter{ + display: flex; + align-items: center; + justify-content: center; + border: 1px solid black; + border-right: 0; + border-left: 0; + padding: 16px 0; + + .NewsLetter-warrper{ + width: 37.03125%; + display: flex; + flex-direction: column; + align-content: flex-start; + flex-wrap: wrap; + + .NewsLetter-title { + font-family: 'Roboto'; + font-weight: 500; + font-size: 18px; + line-height: 21px; + text-transform: uppercase; + letter-spacing: 0.05em; + color: #303030; + } + + .NewsLetter-div{ + margin-top: 8px; + width: 100%; + + .NewsLetter-input, .NewsLetter-input::placeholder { + font-family: 'Roboto'; + font-weight: 400; + font-size: 14px; + line-height: 16px; + color: #C4C4C4; + } + + .NewsLetter-input{ + padding: 12px 16px ; + border: 1px solid #E5E5E5; + border-radius: 4px; + width: 71.7299578%; + color: black; + margin-right: 8px; + } + + .NewsLetter-buttom{ + width: 126px; + height: 42px; + background-color: black; + border-radius: 4px; + font-family: 'Roboto'; + font-weight: 700; + font-size: 12px; + line-height: 14px; + text-align: center; + text-transform: uppercase; + letter-spacing: 0.05em; + color: white; + } + } + } + } +} \ No newline at end of file diff --git a/src/components/Footer/footer.scss b/src/components/Footer/footer.scss deleted file mode 100644 index e69de29..0000000 diff --git a/src/components/Footer/footer.tsx b/src/components/Footer/footer.tsx index 354a94d..f49ac64 100644 --- a/src/components/Footer/footer.tsx +++ b/src/components/Footer/footer.tsx @@ -1,7 +1,14 @@ import React from 'react'; +import styles from './footer.module.scss'; +import { NewsLetter } from './footerNewsLetter'; + const Footer = () => { - return
+ return ( +