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 styleh_components_1 = require("styleh-components");

const GalleryWrapper = styleh_components_1.styled.div`
  width: 100%;
  height: 300px;
  position: relative;
  background-color: #e2e2e2;
`;
exports.GalleryWrapper = GalleryWrapper;
const GalleryListWrapper = styleh_components_1.styled.div`
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
`;
exports.GalleryListWrapper = GalleryListWrapper;
const GalleryListContainer = styleh_components_1.styled.div`
  /**
   * setting dynamic height of the gallery container
   */
  ${props => props.containerWidth && styleh_components_1.styled.css`
    width: ${props.containerWidth + 'px'};
  `}
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
`;
exports.GalleryListContainer = GalleryListContainer;
const GalleryItemPanel = styleh_components_1.styled.div`
  ${props => props.itemWidth && styleh_components_1.styled.css`
    width: ${props.itemWidth + 'px'};
  `}
  height: 100%;
  background-color: red;
  border: 1px solid black;
`;
exports.GalleryItemPanel = GalleryItemPanel;
const BulletsConatiner = styleh_components_1.styled.div`
  display: flex;
  justify-content: center;
  margin-top: 10px;
`;
exports.BulletsConatiner = BulletsConatiner;
const Bullet = styleh_components_1.styled.div`
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: grey;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  margin: 5px;
  color: white;
`;
exports.Bullet = Bullet;
const NavigationContainer = styleh_components_1.styled.div`
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
`;
exports.NavigationContainer = NavigationContainer;
const LeftNavigation = styleh_components_1.styled.div`
  width: 50px;
  height: 100px;
  background-color: grey;
`;
exports.LeftNavigation = LeftNavigation;
const RightNavigation = styleh_components_1.styled.div`
  width: 50px;
  height: 100px;
  background-color: grey;
`;
exports.RightNavigation = RightNavigation; //# sourceMappingURL=styled.js.map