Skip to content

Commit f973ac3

Browse files
authored
Merge pull request #25 from Ahmad-AbuOsbeh/master
fixed barcode is hidden on some screens
2 parents 295710d + 653114c commit f973ac3

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

widget/index.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<link rel="stylesheet" href="../../../scripts/owlCarousel/owlCarousel.css"/>
99
<link rel="stylesheet" href="../../../styles/helper.css"/>
1010
<link rel="stylesheet" href="../../../styles/siteIcons.css"/>
11+
<link rel="stylesheet" href="./widget.css"/>
1112

1213
<!-- JS -->
1314
<script type="text/javascript" src="../../../scripts/angular/angular.min.js"></script>
@@ -21,11 +22,11 @@
2122
</head>
2223
<body ng-controller="sharePluginCtrl" data-ng-cloak>
2324
<div class="holder padding-zero">
24-
<div class="share-plugin">
25+
<div class="share-plugin main-page">
2526
<div class="share-banner clearfix" data-ng-show="data.content.carouselImages.length">
2627
<img src="../../../styles/media/holder-16x9.gif"
2728
ng-if="!carouselFlags.canShowCarousel"
28-
style="position: absolute; width: 100%;"/>
29+
style="position: absolute; width: 100%; max-height: 380px;"/>
2930
<div id="carousel" class="plugin-slider text-center"
3031
load-carousel="{{carouselFlags.carouselHasLoaded}}" data-ng-show="carouselFlags.canShowCarousel"></div>
3132
</div>

widget/widget.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.share-plugin.main-page{
2+
display: flex;
3+
flex-direction: column;
4+
gap: 15px;
5+
}

0 commit comments

Comments
 (0)