externals: Add fmt subtree

Merge commit 'a9f62a15cd' as 'externals/fmt'
This commit is contained in:
MerryMage 2020-04-22 20:24:48 +01:00
commit bd1c5c28ee
162 changed files with 72229 additions and 0 deletions

View file

@ -0,0 +1,15 @@
// Responsive utilities
//
// More easily include all the states for responsive-utilities.less.
.responsive-visibility() {
display: block !important;
table& { display: table; }
tr& { display: table-row !important; }
th&,
td& { display: table-cell !important; }
}
.responsive-invisibility() {
display: none !important;
}