Commit f8b468b874a5b834a786921ca058724669972f54

Authored by Augusto dos Anjos Almeida
1 parent 7811b292

Fixed list style.

sass/_proposal_categories.scss
... ... @@ -178,7 +178,7 @@
178 178 }
179 179  
180 180 // @media only screen and (max-device-width: 480px) {
181   -@media only screen and (max-width: 480px) {
  181 +@media only screen and (max-width: 768px) {
182 182 .proposal-item {
183 183 width: 95% !important;
184 184 }
... ...
sass/_proposal_detail.scss
1 1 .proposal-detail {
2 2 li {
3   - // list-style: none;
4   - // width: 70%;
5   - // padding: 0;
6   - // height: 50px;
7   - // overflow: hidden;
8   -
  3 + list-style: none;
  4 + width: 70%;
  5 + padding: 0;
  6 + height: 50px;
9 7 a {
10 8 text-decoration: none;
11 9 text-transform: uppercase;
... ... @@ -518,7 +516,7 @@
518 516 }
519 517  
520 518 // @media only screen and (max-device-width: 480px) {
521   -@media only screen and (max-width: 480px) {
  519 +@media only screen and (max-width: 768px) {
522 520 .proposal-header {
523 521 .title {
524 522 line-height: 1.2 !important;
... ...
sass/proposal_detail/_proposal-detail-base.scss
... ... @@ -68,6 +68,16 @@
68 68 }
69 69 }
70 70 }
  71 + &.list-styled {
  72 + margin-left: 1.2em;
  73 + list-style: inherit;
  74 + li {
  75 + list-style: inherit;
  76 + width: auto;
  77 + padding: 0;
  78 + height: auto;
  79 + }
  80 + }
71 81 }
72 82 .go-to-proposal-button a {
73 83 background: $color;
... ...