zavoloklom / material-design-typography

Material Design Typography LESS/CSS toolkit
MIT License
9 stars 6 forks source link

Definition horizontal lists are broken #2

Open diosney opened 9 years ago

diosney commented 9 years ago

May I recomend to stick with bootstrap default overall styles and apply only font, padding, margin customizations?

Below is the offending rule:


.dl-horizontal {
  @media (min-width: 768px) {

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;

    dt {
      width: 180px;
      margin-right: @padding-base;
      text-align: right;
      .text-overflow();
    }
    dd {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -ms-flex: 1;
      flex: 1;
    }
  }
}