Advertisement
arxeiss

Two columns responzive table

Aug 10th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.65 KB | None | 0 0
  1. .table-twocols{
  2.     tr{
  3.         td{
  4.             display: block;
  5.  
  6.             &:first-child{
  7.                 padding-bottom: 0;
  8.                 font-weight: bold;
  9.             }
  10.             @include media-breakpoint-down(sm) {
  11.                 &:last-child{
  12.                     padding-top: 0;
  13.                     border: 0;
  14.                 }
  15.             }
  16.  
  17.             @include media-breakpoint-up(md) {
  18.                 display: table-cell;
  19.  
  20.                 &:first-child{
  21.                     padding: $table-cell-padding;
  22.                     text-align: right;
  23.                     width: 40%;
  24.                 }
  25.             }
  26.         }
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement