Commit ac15fec163ade1eb6ad3aa46a3ecbfed587abbd4

Authored by Leonardo Merlin
1 parent 95c326d0

Small fixes at content styles

src/app/content-hack.scss 0 → 100644
... ... @@ -0,0 +1,15 @@
  1 +.pac-cidades-historicas {
  2 + .grid {
  3 + .box-content {
  4 + padding: 20px;
  5 +
  6 + ul > li {
  7 + padding-left: 10px;
  8 + }
  9 + }
  10 +
  11 + .col-sm-height {
  12 + border: 10px solid #fff;
  13 + }
  14 + }
  15 +}
... ...
src/app/layout.scss
... ... @@ -250,6 +250,7 @@ ul.list-color li:before {
250 250  
251 251 .destaque-bg-cinza {
252 252 background-color: #F1F1F1;
  253 + color: #484848;
253 254 }
254 255  
255 256 .destaque-padding {
... ...
src/app/pages/programas/programa.html
... ... @@ -206,7 +206,7 @@
206 206 </section>
207 207  
208 208 <section class="section-content">
209   - <article class="program-content" ng-if="pagePrograma.article">
  209 + <article class="program-content" ng-if="pagePrograma.article" ng-class="pagePrograma.article.slug">
210 210 <div ng-bind-html="pagePrograma.article.bodyTrusted"></div>
211 211 </article>
212 212 </section>
... ...