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    
Size: Mime:
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const view_container_1 = require("view-container");
const ItemPanel = view_container_1.styled.li `
  padding: 10px 0;
`;
exports.ItemPanel = ItemPanel;
const ListWrapper = view_container_1.styled.ul `
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: ${props => props.isHorizontalView === true ? 'row' : 'column'};

  ${props => props.isHorizontalView &&
    view_container_1.styled.css `
      ${ItemPanel} {
        margin-right: 10px;
      }
    `};
`;
exports.ListWrapper = ListWrapper;
//# sourceMappingURL=styled.js.map