Update file with flex direction reverse

Hi,
I updated the file with .flex-row-reverse and .flex-column-reverse

Hope it is useful
This commit is contained in:
Unknow-max 2020-02-23 15:26:28 +01:00 committed by GitHub
parent 244c722f1c
commit b69ecf7df8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -634,7 +634,9 @@ img { max-width: 100%; }
.flex-auto { flex: 1 1 auto; min-width: 0; /* 1 */ min-height: 0; /* 1 */ }
.flex-none { flex: none; }
.flex-column { flex-direction: column; }
.flex-column-reverse {flex-direction: column-reverse;}
.flex-row { flex-direction: row; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-wrap-reverse { flex-wrap: wrap-reverse; }