| 1 |
.display-none { |
| 2 |
display: none !important; |
| 3 |
} |
| 4 |
.display-inline { |
| 5 |
display: inline !important; |
| 6 |
} |
| 7 |
.display-inline-block { |
| 8 |
display: inline-block !important; |
| 9 |
} |
| 10 |
.display-block { |
| 11 |
display: block !important; |
| 12 |
} |
| 13 |
.display-table { |
| 14 |
display: table !important; |
| 15 |
} |
| 16 |
.display-table-row { |
| 17 |
display: table-row !important; |
| 18 |
} |
| 19 |
.display-table-cell { |
| 20 |
display: table-cell !important; |
| 21 |
} |
| 22 |
.display-flex { |
| 23 |
display: flex !important; |
| 24 |
} |
| 25 |
.display-inline-flex { |
| 26 |
display: inline-flex !important; |
| 27 |
} |
| 28 |
|