From b69ecf7df89e834fbf54bc5a064cd21131b0fa13 Mon Sep 17 00:00:00 2001 From: Unknow-max <59534318+Unknow-max@users.noreply.github.com> Date: Sun, 23 Feb 2020 15:26:28 +0100 Subject: [PATCH] Update file with flex direction reverse Hi, I updated the file with .flex-row-reverse and .flex-column-reverse Hope it is useful --- css/tachyons.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/css/tachyons.css b/css/tachyons.css index f5a7b12..5b233d1 100644 --- a/css/tachyons.css +++ b/css/tachyons.css @@ -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; }