@@ -16,65 +16,71 @@ PUNICA CSS > UTILITIES : HELPERS *********************/
1616
1717 /* ****************************************************
1818 Font Sizes *******************************************/
19- @include setHelperList ($font-sizes , " !important" );
19+ @include setHelperList ($font-sizes , " font-size " , " !important" );
2020
2121 /* ****************************************************
2222 Text Colors ******************************************/
23- @include setHelperList ($text-colors , " !important" );
23+ @include setHelperList ($text-colors , " color " , " !important" );
2424
2525 /* ****************************************************
2626 Background Colors ************************************/
27- @include setHelperList ($bg-colors , " !important" );
27+ @include setHelperList ($bg-colors , " background-color " , " !important" );
2828 @include customBackgrounds ();
2929
3030 /* ****************************************************
3131 Cursors **********************************************/
32- @include setHelperList ($cursors , " !important" );
32+ @include setHelperList ($cursors , " cursor " , " !important" );
3333
3434 /* ****************************************************
3535 Display Properties ***********************************/
36- @include setHelperList ($display-properties , " !important" );
37- @include setHelperList ($align-items );
38- @include setHelperList ($align-self );
36+ @include setHelperList ($display-properties , " display" , " !important" );
3937
4038 /* ****************************************************
4139 Alignment ********************************************/
42- @include setHelperList ($align-items );
43- @include setHelperList ($align-self );
44- @include setHelperList ($justify-content );
40+ @include setHelperList ($align-items , " align-items " );
41+ @include setHelperList ($align-self , " align-self " );
42+ @include setHelperList ($justify-content , " justify-content " );
4543
4644 /* ****************************************************
4745 Filters **********************************************/
48- @include setHelperList ($display-filters );
46+ @include setHelperList ($display-filters , " filter " );
4947
5048 /* ****************************************************
5149 Text Transform Properties ****************************/
52- @include setHelperList ($text-transforms );
50+ @include setHelperList ($text-transforms , " text-transform " );
5351
5452 /* ****************************************************
5553 Overflow Properties **********************************/
5654 @include setHelperList ($overflow-properties );
5755
5856 /* ****************************************************
5957 Position Properties **********************************/
60- @include setHelperList ($position-properties );
58+ @include setHelperList ($position-properties , " position " );
6159
6260 /* ****************************************************
6361 Stack Order ******************************************/
6462 @include setHelperListWithRange ($z-indexes , $helper-z-indexes , null, " !important" );
6563
6664 /* ****************************************************
6765 Direction of the flexible items **********************/
68- @include setHelperList ($flex-directions );
66+ @include setHelperList ($flex-directions , " flex-direction " );
6967
7068 /* ****************************************************
7169 User Select Properties *******************************/
72- @include setHelperList ($user-selects );
70+ @include setHelperList ($user-selects , " user-select" );
71+
72+ /* ****************************************************
73+ Insets *******************************/
74+ @include setNestedHelperList ($insets );
7375
7476 /* ****************************************************
7577 Line Height Properties *******************************/
7678 @include setHelperListWithRange ($line-heights , $helper-lh-ranges , null, " !important" );
7779
80+ /* ****************************************************
81+ Border Radius ****************************************/
82+ @include setHelperListWithRange ($border-radius , $helper-br-ranges , " px" , " !important" );
83+
7884 /* ****************************************************
7985 Others ***********************************************/
8086 @include otherHelpers ();
0 commit comments