Repository URL to install this package:
|
Version:
2.0.3 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.StyledList = styled.ul``;
exports.StyledItem = styled.li``;
exports.StyledInput = styled.input`
font-size: 1.5rem;
line-height: 1.2;
width: 90%;
padding: 5;
background-color: #fafafa;
`;
exports.StyledInputSection = styled.section``;
exports.StyledInputLabel = styled.p``;
exports.StyledTab = styled.li`
flex: 1;
text-align: center;
padding: auto;
background-color: #eee;
color: black;
border-radius: 3;
font-size: 1.2rem;
padding-top: 40;
${props => props.isActive && styled.css`
background-color: tomato;
color: #fff;
`};
`;
exports.StyledTabList = styled.ul`
padding: 0;
list-style: none;
display: flex;
height: 100px;
`; //# sourceMappingURL=styled.js.map