feat(module): Adiciona css module
This commit is contained in:
parent
b6fa9fa949
commit
33a01ca436
@ -7,6 +7,8 @@ import Link from "./Link";
|
|||||||
import HeaderLinks from "./HeaderLinks";
|
import HeaderLinks from "./HeaderLinks";
|
||||||
import MenuMobile from "./menuMobile";
|
import MenuMobile from "./menuMobile";
|
||||||
|
|
||||||
|
import styles from "../styles/header.module.scss";
|
||||||
|
|
||||||
const Header = () => {
|
const Header = () => {
|
||||||
const [isActive, setIsActive] = useState(false);
|
const [isActive, setIsActive] = useState(false);
|
||||||
const activeMenuMobile = () => {
|
const activeMenuMobile = () => {
|
||||||
@ -14,12 +16,12 @@ const Header = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<header className="page-header">
|
<header className={styles["page-header"]}>
|
||||||
<div className="page-header__container">
|
<div className={styles["page-header__container"]}>
|
||||||
<section className="page-header__container-top">
|
<section className={styles["page-header__container-top"]}>
|
||||||
<div className="page-header__menu">
|
<div className={styles["page-header__menu"]}>
|
||||||
<button
|
<button
|
||||||
className="page-header__menu-button"
|
className={styles["page-header__menu-button"]}
|
||||||
aria-label="Menu"
|
aria-label="Menu"
|
||||||
onClick={activeMenuMobile}
|
onClick={activeMenuMobile}
|
||||||
>
|
>
|
||||||
@ -27,28 +29,34 @@ const Header = () => {
|
|||||||
</button>
|
</button>
|
||||||
<MenuMobile
|
<MenuMobile
|
||||||
className={
|
className={
|
||||||
isActive
|
isActive ? styles["active"] : styles["page-header__menu-mobile"]
|
||||||
? "page-header__menu-mobile active"
|
|
||||||
: "page-header__menu-mobile"
|
|
||||||
}
|
}
|
||||||
onClick={activeMenuMobile}
|
onClick={activeMenuMobile}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<a className="page-header__logo" href="/">
|
<a className={styles["page-header__logo"]} href="/">
|
||||||
<img src={Logo} alt="" />
|
<img src={Logo} alt="" />
|
||||||
</a>
|
</a>
|
||||||
<SearchBar />
|
<SearchBar />
|
||||||
<div className="page-header__container-login">
|
<div className={styles["page-header__container-login"]}>
|
||||||
<Link link="/" text="ENTRAR" />
|
<Link link="/" text="ENTRAR" />
|
||||||
<a href="/" aria-label="Carrinho" className="page-header__cart">
|
<a
|
||||||
<img src={Cart} alt="" className="page-header__cart-image" />
|
href="/"
|
||||||
|
aria-label="Carrinho"
|
||||||
|
className={styles["page-header__cart"]}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src={Cart}
|
||||||
|
alt=""
|
||||||
|
className={styles["page-header__cart-image"]}
|
||||||
|
/>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<section className="page-header__container-bottom-mobile">
|
<section className={styles["page-header__container-bottom-mobile"]}>
|
||||||
<SearchBar />
|
<SearchBar />
|
||||||
</section>
|
</section>
|
||||||
<section className="page-header__container-bottom">
|
<section className={styles["page-header__container-bottom"]}>
|
||||||
<HeaderLinks />
|
<HeaderLinks />
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import styles from "../styles/header.module.scss";
|
||||||
|
|
||||||
export interface LinkProps {
|
export interface LinkProps {
|
||||||
link: string;
|
link: string;
|
||||||
text: string;
|
text: string;
|
||||||
@ -5,7 +7,7 @@ export interface LinkProps {
|
|||||||
|
|
||||||
const Link = (props: LinkProps) => {
|
const Link = (props: LinkProps) => {
|
||||||
return (
|
return (
|
||||||
<a href={props.link} className="link">
|
<a href={props.link} className={styles["link"]}>
|
||||||
{props.text}
|
{props.text}
|
||||||
</a>
|
</a>
|
||||||
);
|
);
|
||||||
|
@ -1,14 +1,20 @@
|
|||||||
import iconBusca from "../assets/img/IconBusca.png";
|
import iconBusca from "../assets/img/IconBusca.png";
|
||||||
|
|
||||||
|
import styles from "../styles/header.module.scss";
|
||||||
|
|
||||||
const SearchBar = () => {
|
const SearchBar = () => {
|
||||||
return (
|
return (
|
||||||
<div className="page-header__busca">
|
<div className={styles["page-header__busca"]}>
|
||||||
<input
|
<input
|
||||||
className="page-header__busca-input"
|
className={styles["page-header__busca-input"]}
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="Buscar..."
|
placeholder="Buscar..."
|
||||||
/>
|
/>
|
||||||
<img src={iconBusca} alt="logo M3" className="page-header__busca-icon" />
|
<img
|
||||||
|
src={iconBusca}
|
||||||
|
alt="logo M3"
|
||||||
|
className={styles["page-header__busca-icon"]}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -2,6 +2,8 @@ import iconExit from "../assets/img/iconExit.png";
|
|||||||
import Link from "./Link";
|
import Link from "./Link";
|
||||||
import HeaderLinks from "./HeaderLinks";
|
import HeaderLinks from "./HeaderLinks";
|
||||||
|
|
||||||
|
import styles from "../styles/menuMobile.module.scss";
|
||||||
|
|
||||||
interface MenuMobileProps {
|
interface MenuMobileProps {
|
||||||
className: string;
|
className: string;
|
||||||
onClick: React.MouseEventHandler;
|
onClick: React.MouseEventHandler;
|
||||||
@ -10,11 +12,11 @@ interface MenuMobileProps {
|
|||||||
const MenuMobile = (props: MenuMobileProps) => {
|
const MenuMobile = (props: MenuMobileProps) => {
|
||||||
return (
|
return (
|
||||||
<div className={props.className}>
|
<div className={props.className}>
|
||||||
<div className="page-header__menu-mobile--container">
|
<div className={styles["page-header__menu-mobile--container"]}>
|
||||||
<div className="page-header__menu-mobile--header">
|
<div className={styles["page-header__menu-mobile--header"]}>
|
||||||
<Link link="/" text="ENTRAR" />
|
<Link link="/" text="ENTRAR" />
|
||||||
<button
|
<button
|
||||||
className="page-header__menu-mobile--button-exit"
|
className={styles["page-header__menu-mobile--button-exit"]}
|
||||||
aria-label="exit"
|
aria-label="exit"
|
||||||
type="submit"
|
type="submit"
|
||||||
onClick={props.onClick}
|
onClick={props.onClick}
|
||||||
@ -22,7 +24,7 @@ const MenuMobile = (props: MenuMobileProps) => {
|
|||||||
<img src={iconExit} alt="" />
|
<img src={iconExit} alt="" />
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div className="page-header__menu-mobile--links">
|
<div className={styles["page-header__menu-mobile--links"]}>
|
||||||
<HeaderLinks />
|
<HeaderLinks />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
@import './styles/variables.scss';
|
|
||||||
@import './styles/reset.scss';
|
|
||||||
@import './styles/header.scss';
|
|
@ -1,5 +1,5 @@
|
|||||||
import ReactDOM from "react-dom";
|
import ReactDOM from "react-dom";
|
||||||
import "./global.scss";
|
import "./styles/global.scss";
|
||||||
import Home from "./pages/Home";
|
import Home from "./pages/Home";
|
||||||
|
|
||||||
const App = () => {
|
const App = () => {
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
@import './variables.scss';
|
||||||
|
|
||||||
* {
|
* {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
@ -1,3 +1,5 @@
|
|||||||
|
@import './variables.scss';
|
||||||
|
|
||||||
.page-header {
|
.page-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -94,57 +96,28 @@
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__menu-mobile {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
background: rgba(69, 69, 69, 0.7);
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
z-index: 50;
|
|
||||||
display: none;
|
|
||||||
|
|
||||||
&--container {
|
|
||||||
height: 585px;
|
|
||||||
background: $white;
|
|
||||||
width: 96.5%;
|
|
||||||
}
|
|
||||||
|
|
||||||
&--header {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
background: $black;
|
|
||||||
padding: 31px 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
&--button-exit {
|
|
||||||
background: transparent;
|
|
||||||
border: 0;
|
|
||||||
outline: 0;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
&--links {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-self: start;
|
|
||||||
gap: 12px;
|
|
||||||
padding: 31px 0 0 16px;
|
|
||||||
|
|
||||||
.link {
|
|
||||||
color: #C4C4C4;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
&__container-bottom-mobile {
|
&__container-bottom-mobile {
|
||||||
padding: 0 16px 25px;
|
padding: 0 16px 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__menu-mobile {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.active {
|
.active {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
background: rgba($gray, 0.702);
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: 50;
|
||||||
display: block;
|
display: block;
|
||||||
|
|
||||||
|
|
||||||
|
.link {
|
||||||
|
color: $gray-600;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 2500px) {
|
@media screen and (min-width: 2500px) {
|
35
src/styles/menuMobile.module.scss
Normal file
35
src/styles/menuMobile.module.scss
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
@import './variables.scss';
|
||||||
|
|
||||||
|
.page-header {
|
||||||
|
&__menu-mobile {
|
||||||
|
&--container {
|
||||||
|
height: 585px;
|
||||||
|
background: $white;
|
||||||
|
width: 96.5%;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--header {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
background: $black;
|
||||||
|
padding: 31px 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--button-exit {
|
||||||
|
background: transparent;
|
||||||
|
border: 0;
|
||||||
|
outline: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--links {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-self: start;
|
||||||
|
gap: 12px;
|
||||||
|
padding: 31px 0 0 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user