Commit 546e7890ed1be62a55e127f1fa61c9759e9af7f4

Authored by Leonardo Merlin
1 parent 95e102a7

Fixes 55

src/app/pages/inicio/inicio.html
... ... @@ -22,15 +22,13 @@
22 22 </div>
23 23 <div class="col-md-4" ng-if="pageInicio.featuredEvent">
24 24 <div class="row">
25   - <div class="featured-event--box">
  25 + <div class="featured-event--box" ng-click="pageInicio.showEventVideo()">
26 26 <div class="box-top col-xs-12 col-sm-4 col-md-12">
27 27 <h2 class="box-title">Bate papo com <b>MINISTROS/AS</b></h2>
28 28 </div>
29 29 <div class="box-middle col-xs-12 col-sm-4 col-md-12">
30 30 <div class="video"
31   - ng-style="{'background-image': 'url(' + pageInicio.featuredEvent.image.url + ')'}"
32   - ng-click="pageInicio.showEventVideo()"
33   - >
  31 + ng-style="{'background-image': 'url(' + pageInicio.featuredEvent.image.url + ')'}">
34 32 </div>
35 33 </div>
36 34 <div class="box-bottom col-xs-12 col-sm-4 col-md-12">
... ...
src/app/pages/inicio/inicio.scss
... ... @@ -35,6 +35,7 @@
35 35 background-color: #545454;
36 36 color: #fff;
37 37 border-radius: 5px;
  38 + cursor: pointer;
38 39  
39 40 .box-top {
40 41 text-transform: uppercase;
... ... @@ -53,7 +54,6 @@
53 54 padding: 0;
54 55  
55 56 .video {
56   - cursor: pointer;
57 57 width: 100%;
58 58 min-height: 125px;
59 59 background-size: cover;
... ...