GITLAB

Eric Fernandez / wrapper-demo

Sign in
  • Sign in
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • wrapper-demo
  • src
  • sass
  • _tabla-articulos.scss
  • 36c3cbfae   Styles nuevo diseño responsive Browse Code »
    Jose Pinto
    2018-12-17 11:14:21 -0300  
_tabla-articulos.scss 531 Bytes
edit raw blame history
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
.tabla-articulo {
    max-height: 420px;
    background-color: #67615e;
    color: #FFF;
    
    tr {
        display: inline-table;
        table-layout: fixed;
    }

    tbody {
        overflow-y: auto;
        max-height: 280px;
        display: block;
    }

    thead > tr > th {
        line-height: 30px
    }

    @media(max-width: 992px){
        tr{
            display: block;
            span{
                line-height: 35px;
            }
        }
        tfoot tr{
            display: flex;
        }
    }
}