{"file":"ifx-slide.entry.esm.js","mappings":";;AAAA,MAAM,WAAW,GAAG,ypHAAypH;;MCQhqH,QAAQ;;;;EAEnB,MAAM;IACJ,QACE,EAAC,IAAI,QACH,eAAa,CACR,EACP;GACH;;;;;;","names":[],"sources":["src/components/ifx-slide/ifx-slide.scss?tag=ifx-slide","src/components/ifx-slide/ifx-slide.tsx"],"sourcesContent":["/* stylelint-disable */ // Used only for files created before adding the linter -> please remove when changing the file!\n$ifx_engineer: #928285; // base color\n$icon_color: #4C8AF5;\n$number_of_lines_to_show: 3;\n\nifx-slide {\n  position: relative;\n  display: block;\n  height: 100%;\n\n  h3 {\n    color: $ifx_engineer;\n    font-size: 20px;\n    line-height: 25px;\n    font-weight: bold;\n  }\n\n  img {\n    width: 100%;\n  }\n\n  .slider-info-container {\n    text-align: left;\n    padding: 18px;\n    font-size: 14px;\n    line-height: 18px;\n\n    p {\n      color: $ifx_engineer;\n\n      overflow: hidden;\n      text-overflow: ellipsis;\n      display: -webkit-box;\n      -webkit-line-clamp: $number_of_lines_to_show;\n      -webkit-box-orient: vertical;\n\n      &:last-of-type {\n        margin-bottom: 30px;\n      }\n    }\n  }\n\n  .slide-bottom-links {\n    position: absolute;\n    bottom: 18px;\n    width: calc(100% - 36px);\n\n    .links {\n      display: flex;\n      justify-content: space-between;\n\n      a {\n        color: $icon_color;\n        font-size: 15px;\n        line-height: 19px;\n\n        display: inline-flex;\n        align-items: center;\n\n        span {\n          margin-right: 5px;\n        }\n\n        &:hover {\n          color: darken($icon_color, 10%);\n        }\n      }\n    }\n  }\n}\n","/* eslint-disable */ // Used only for files created before adding the linter -> please remove when changing the file!\nimport {Component, Host, h} from '@stencil/core';\n\n@Component({\n  tag: 'ifx-slide',\n  styleUrl: 'ifx-slide.scss',\n  shadow: false,\n})\nexport class IfxSlide {\n\n  render() {\n    return (\n      <Host>\n        <slot></slot>\n      </Host>\n    );\n  }\n}\n"],"version":3}