Commit 1cfd54a05499c122c8f63708675ebc5062891ba1

Authored by Rafael Diego
2 parents 42ecec40 a24950ab

Merge branch 'correcao-ranking'

src/app/components/article-box/article-box.html
... ... @@ -18,7 +18,8 @@
18 18 <div class="article-box--abstract" ng-bind-html="vm.article.summary"></div>
19 19 <div class="button--themed">
20 20 <button class="btn btn-block">
21   - Participe
  21 + <span ng-show="{{::vm.article.archived}}">Veja as respostas</span>
  22 + <span ng-show="{{::!vm.article.archived}}">Participe</span>
22 23 </button>
23 24 </div>
24 25 </div>
... ...
src/app/pages/inicio/inicio.scss
... ... @@ -188,7 +188,7 @@
188 188 left: 0;
189 189 display: block;
190 190 width: 100%;
191   - height: $bannerBottomHeight;
  191 + //height: $bannerBottomHeight;
192 192 background-color: #dfa821;
193 193 border-bottom-left-radius: 5px;
194 194 border-bottom-right-radius: 5px;
... ...