Institucional
-diff --git a/src/components/About/About.module.scss b/src/components/About/About.module.scss index 72052d6..7b937e2 100644 --- a/src/components/About/About.module.scss +++ b/src/components/About/About.module.scss @@ -2,6 +2,11 @@ margin-left: 30px; padding: 10px 0; + @media screen and (width <= 1024px) { + padding: 0; + margin: 0; + } + .section-title { font-family: "Roboto"; font-style: normal; @@ -15,6 +20,10 @@ font-size: 48px; line-height: 56px; } + + @media screen and (width <= 1024px) { + text-align: center; + } } .section-description { @@ -27,6 +36,16 @@ height: 376px; } + @media screen and (width <= 1024px) { + height: 142px; + gap: 20px; + overflow: scroll; + } + + @media screen and (width <= 480px) { + height: 344px; + } + .section-content { font-family: "Roboto"; font-style: normal; @@ -41,6 +60,13 @@ font-size: 26px; line-height: 30px; } + + @media screen and (width <= 1024px) { + font-size: 12px; + line-height: 18px; + text-align: justify; + padding-right: 1px; + } } } } diff --git a/src/components/AsideMenu/AsideMenu.module.scss b/src/components/AsideMenu/AsideMenu.module.scss index a3da0b2..c3fa6b4 100644 --- a/src/components/AsideMenu/AsideMenu.module.scss +++ b/src/components/AsideMenu/AsideMenu.module.scss @@ -4,9 +4,18 @@ list-style: none; text-decoration: none; + @media screen and (width <= 1024px) { + margin-bottom: 30px; + } + li { padding: 10px 16px; transition: all 0.2s ease-in-out; + // background-color: yellow; + + @media screen and (width <= 1024px) { + width: calc(100% - 32px); + } a { font-family: "Roboto"; @@ -33,7 +42,8 @@ // } &:hover { - background: #292929; + // &.active + background: #292929; // #000000; a { font-weight: 700; diff --git a/src/components/Contact/Contact.module.scss b/src/components/Contact/Contact.module.scss index 0192546..ad2cb87 100644 --- a/src/components/Contact/Contact.module.scss +++ b/src/components/Contact/Contact.module.scss @@ -2,6 +2,11 @@ margin-left: 30px; padding: 10px 0; + @media screen and (width <= 1024px) { + padding: 0; + margin: 0; + } + .section-title { font-family: "Roboto"; font-style: normal; @@ -15,5 +20,9 @@ font-size: 48px; line-height: 56px; } + + @media screen and (width <= 1024px) { + text-align: center; + } } } diff --git a/src/components/ContactForm/ContactForm.module.scss b/src/components/ContactForm/ContactForm.module.scss index 5c81ecb..45a85c3 100644 --- a/src/components/ContactForm/ContactForm.module.scss +++ b/src/components/ContactForm/ContactForm.module.scss @@ -49,7 +49,7 @@ font-weight: 400; font-size: 14px; line-height: 16px; - color: #000000; + color: #000000; //#b9b7b7? #100d0e? outline: 0; @media screen and (width >= 2500px) { @@ -148,7 +148,8 @@ letter-spacing: 0.05em; color: #ffffff; text-transform: uppercase; - border: none; + border: 0; + outline: 0; cursor: pointer; transition: all 0.2s ease-in-out; diff --git a/src/components/MainLayout/Breadcrumbs/Breadcrumbs.module.scss b/src/components/MainLayout/Breadcrumbs/Breadcrumbs.module.scss new file mode 100644 index 0000000..a8e5fac --- /dev/null +++ b/src/components/MainLayout/Breadcrumbs/Breadcrumbs.module.scss @@ -0,0 +1,51 @@ +.breadcrumbs { + display: flex; + gap: 9.72px; + align-items: center; + margin-bottom: 80px; + + @media screen and (width >= 2500px) { + gap: 12px; + } + + .home-icon { + img { + width: 16px; + height: 16px; + display: block; + + @media screen and (width >= 2500px) { + width: 31.22px; + height: 31.25px; + } + } + } + + .arrow-icon { + img { + width: 4.56px; + height: 8px; + display: block; + + @media screen and (width >= 2500px) { + width: 8.9px; + height: 15.62px; + } + } + } + + .current-location { + font-family: "Roboto"; + font-style: normal; + font-weight: 400; + font-size: 12px; + text-transform: uppercase; + color: #c4c4c4; + margin: 0; + // padding: 0; + + @media screen and (width >= 2500px) { + font-size: 24px; + } + } +} diff --git a/src/components/MainLayout/Breadcrumbs/Breadcrumbs.tsx b/src/components/MainLayout/Breadcrumbs/Breadcrumbs.tsx new file mode 100644 index 0000000..a0381e1 --- /dev/null +++ b/src/components/MainLayout/Breadcrumbs/Breadcrumbs.tsx @@ -0,0 +1,22 @@ +import React from "react"; + +import styles from "./Breadcrumbs.module.scss"; + +import homeIcon from "./assets/home-icon.svg"; +import arrowIcon from "./assets/arrow-icon.svg"; + +const Breadcrumbs = () => { + return ( +
Institucional
+Institucional
-