projeto-hit/frontend/src/components/Menu/MenuBottom.style.jsx

32 lines
643 B
JavaScript

import styled from "styled-components";
import { color } from "../../style/varibles";
const MenuBottomStyled = styled.div`
display: flex;
position: absolute;
left: 12px;
bottom: 16px;
z-index: 100;
svg {
max-width: 51px;
max-height: 51px;
min-width: 51px;
min-height: 51px;
}
p {
display: block;
width: 129px;
align-items: center;
margin-left: 12px;
font-family: "Helvetica55";
font-size: 10px;
color: ${color.pricinpal.blanco};
display: ${({ hover }) => (hover ? "flex" : "none")};
opacity: ${({ hover }) => (hover ? "1" : "0")};
}
`;
export default MenuBottomStyled;