0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-14 02:24:00 +01:00
Bootstrap/less/mixins/responsive-visibility.less

14 lines
307 B
Plaintext
Raw Normal View History

2017-11-26 03:06:34 +01:00
/* stylelint-disable declaration-no-important */
.responsive-visibility() {
display: block !important;
table& { display: table !important; }
tr& { display: table-row !important; }
th&,
td& { display: table-cell !important; }
}
.responsive-invisibility() {
display: none !important;
}