diff --git a/frontend/tailwind.css b/frontend/tailwind.css index 1ae40f6..b7466eb 100644 --- a/frontend/tailwind.css +++ b/frontend/tailwind.css @@ -35,5 +35,31 @@ * By default, only responsive variants are generated for box-sizing utilities. * ******************************************************************************************* */ -.box-border /* box-sizing: border-box; */ +.box-border /* box-sizing: border-box; */ .box-content /* box-sizing: content-box; */ + +/* ******************************************************************************************* + * DISPLAY + * Utilities for controlling the display box type of an element. + * By default, only responsive variants are generated for display utilities. + * ******************************************************************************************* */ + + .hidden /* display: none; */ + .block /* display: block; */ + .inline-block /* display: inline-block; */ + .inline /* display: inline; */ + .flex /* display: flex; */ + .inline-flex /* display: inline-flex; */ + .grid /* display: grid; */ + .table /* display: table; */ + .table-caption /* display: table-caption; */ + .table-cell /* display: table-cell; */ + .table-column /* display: table-column; */ + .table-column-group /* display: table-column-group; */ + .table-footer-group /* display: table-footer-group; */ + .table-header-group /* display: table-header-group; */ + .table-row-group /* display: table-row-group; */ + .table-row /* display: table-row; */ + + + \ No newline at end of file