Skip to content

Instantly share code, notes, and snippets.

@jonathanpath
Created January 17, 2017 15:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonathanpath/7096c51f6bf35333eac8bc46d1b83e26 to your computer and use it in GitHub Desktop.
Save jonathanpath/7096c51f6bf35333eac8bc46d1b83e26 to your computer and use it in GitHub Desktop.
Smart responsive bootstrap tables
/*===========================================
= Override BS3 tables =
===========================================*/
.table-smartresponsive {
@media (max-width: $screen-xs-max) {
th {
display: none;
}
& > tbody {
& > tr {
td {
display: block;
border: none;
&:first-child {
padding-top: 20px;
}
&:last-child {
padding-bottom: 20px;
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment