mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 11:34:21 +00:00
24 lines
571 B
CSS
24 lines
571 B
CSS
|
/**
|
||
|
* Bluelib Layouts Flex
|
||
|
* by <me@steffo.eu>
|
||
|
*/
|
||
|
:where(.bluelib) :where(.layout-flex-row),
|
||
|
:where(.bluelib) :where(.layout-flex-rrow),
|
||
|
:where(.bluelib) :where(.layout-flex-column),
|
||
|
:where(.bluelib) :where(.layout-flex-rcolumn) {
|
||
|
display: flex;
|
||
|
gap: 8px;
|
||
|
}
|
||
|
:where(.bluelib) :where(.layout-flex-row) {
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
:where(.bluelib) :where(.layout-flex-rrow) {
|
||
|
flex-direction: row-reverse;
|
||
|
}
|
||
|
:where(.bluelib) :where(.layout-flex-column) {
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
:where(.bluelib) :where(.layout-flex-rcolumn) {
|
||
|
flex-direction: column-reverse;
|
||
|
}
|