Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / src / playground / Async / styled.js
Size: Mime:
"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