/** * Bluelib Layouts Flex * by */ :where(body) :where(.layout-flex-row), :where(body) :where(.layout-flex-rrow), :where(body) :where(.layout-flex-column), :where(body) :where(.layout-flex-rcolumn) { display: flex; gap: 8px; } :where(body) :where(.layout-flex-row) { flex-direction: row; } :where(body) :where(.layout-flex-rrow) { flex-direction: row-reverse; } :where(body) :where(.layout-flex-column) { flex-direction: column; } :where(body) :where(.layout-flex-rcolumn) { flex-direction: column-reverse; }