mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-13 01:08:58 +01:00
fb5a1c6b29
Otherwise the comments are actually output to the CSS.
14 lines
304 B
Plaintext
14 lines
304 B
Plaintext
// 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;
|
|
}
|