mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2025-11-08 22:11:35 +00:00
docs(tailwind): flex direction
This commit is contained in:
@@ -171,19 +171,28 @@
|
|||||||
/*
|
/*
|
||||||
* Visibility
|
* Visibility
|
||||||
* ----------
|
* ----------
|
||||||
*
|
* Utilities for controlling the visibility of an element.
|
||||||
*
|
* By default, only responsive variants are generated for visibility utilities.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
.visible /* visibility: visible; */
|
||||||
|
.invisible /* visibility: hidden; */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Z-Index
|
* Z-Index
|
||||||
* ----------
|
* ----------
|
||||||
*
|
* Utilities for controlling the stack order of an element.
|
||||||
*
|
* By default, only responsive variants are generated for z-index utilities.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
.z-0 /* z-index: 0; */
|
||||||
|
.z-10 /* z-index: 10; */
|
||||||
|
.z-20 /* z-index: 20; */
|
||||||
|
.z-30 /* z-index: 30; */
|
||||||
|
.z-40 /* z-index: 40; */
|
||||||
|
.z-50 /* z-index: 50; */
|
||||||
|
.z-auto /* z-index: auto; */
|
||||||
|
|
||||||
/* *******************************************************************************************
|
/* *******************************************************************************************
|
||||||
* FLEXBOX
|
* FLEXBOX
|
||||||
* ******************************************************************************************* */
|
* ******************************************************************************************* */
|
||||||
@@ -191,10 +200,15 @@
|
|||||||
/*
|
/*
|
||||||
* Flex Direction
|
* Flex Direction
|
||||||
* ----------
|
* ----------
|
||||||
*
|
* Utilities for controlling the direction of flex items.
|
||||||
*
|
* By default, only responsive variants are generated for flex-direction utilities.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
.flex-row /* flex-direction: row; */
|
||||||
|
.flex-row-reverse /* flex-direction: row-reverse; */
|
||||||
|
.flex-col /* flex-direction: column; */
|
||||||
|
.flex-col-reverse /* flex-direction: column-reverse; */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Flex Wrap
|
* Flex Wrap
|
||||||
* ----------
|
* ----------
|
||||||
|
|||||||
Reference in New Issue
Block a user