31 lines
630 B
React
31 lines
630 B
React
|
import styled from "styled-components";
|
||
|
|
||
|
import { color } from "../../style/varibles";
|
||
|
|
||
|
const MenuBottomStyled = styled.div`
|
||
|
display: flex;
|
||
|
position: absolute;
|
||
|
left: 12px;
|
||
|
bottom: 16px;
|
||
|
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: "HelveticaRoman";
|
||
|
font-size: 10px;
|
||
|
color: ${color.pricinpal.blanco};
|
||
|
display: ${({ hover }) => (hover ? "flex" : "none")};
|
||
|
opacity: ${({ hover }) => (hover ? "1" : "0")};
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default MenuBottomStyled;
|
||
|
|