@@ -14036,22 +14036,22 @@ test('leading', async () => {
1403614036 await compileCss (
1403714037 css `
1403814038 @theme {
14039- --line-height -none : 1 ;
14040- --line-height -6 : 1.5rem ;
14039+ --leading -none : 1 ;
14040+ --leading -6 : 1.5rem ;
1404114041 }
1404214042 @tailwind utilities;
1404314043 ` ,
1404414044 [ 'leading-none' , 'leading-6' , 'leading-[var(--value)]' ] ,
1404514045 ) ,
1404614046 ) . toMatchInlineSnapshot ( `
1404714047 ":root {
14048- --line-height -none: 1;
14049- --line-height -6: 1.5rem;
14048+ --leading -none: 1;
14049+ --leading -6: 1.5rem;
1405014050 }
1405114051
1405214052 .leading-6 {
14053- --tw-leading: var(--line-height -6);
14054- line-height: var(--line-height -6);
14053+ --tw-leading: var(--leading -6);
14054+ line-height: var(--leading -6);
1405514055 }
1405614056
1405714057 .leading-\\[var\\(--value\\)\\] {
@@ -14060,8 +14060,8 @@ test('leading', async () => {
1406014060 }
1406114061
1406214062 .leading-none {
14063- --tw-leading: var(--line-height -none);
14064- line-height: var(--line-height -none);
14063+ --tw-leading: var(--leading -none);
14064+ line-height: var(--leading -none);
1406514065 }
1406614066
1406714067 @supports (-moz-orient: inline) {
@@ -14660,10 +14660,10 @@ test('text', async () => {
1466014660 css `
1466114661 @theme {
1466214662 --color-red-500 : # ef4444 ;
14663- --line-height -6 : 1.5rem ;
14663+ --leading -6 : 1.5rem ;
1466414664 --text-sm : 0.875rem ;
1466514665 --text-sm--line-height : 1.25rem ;
14666- --line-height -9 : 2.25rem ;
14666+ --leading -9 : 2.25rem ;
1466714667 }
1466814668 @tailwind utilities;
1466914669 ` ,
@@ -14717,10 +14717,10 @@ test('text', async () => {
1471714717 ) . toMatchInlineSnapshot ( `
1471814718 ":root {
1471914719 --color-red-500: #ef4444;
14720- --line-height -6: 1.5rem;
14720+ --leading -6: 1.5rem;
1472114721 --text-sm: .875rem;
1472214722 --text-sm--line-height: 1.25rem;
14723- --line-height -9: 2.25rem;
14723+ --leading -9: 2.25rem;
1472414724 }
1472514725
1472614726 .text-sm {
@@ -14730,32 +14730,32 @@ test('text', async () => {
1473014730
1473114731 .text-\\[12px\\]\\/6 {
1473214732 font-size: 12px;
14733- line-height: var(--line-height -6);
14733+ line-height: var(--leading -6);
1473414734 }
1473514735
1473614736 .text-\\[50\\%\\]\\/6 {
1473714737 font-size: 50%;
14738- line-height: var(--line-height -6);
14738+ line-height: var(--leading -6);
1473914739 }
1474014740
1474114741 .text-\\[clamp\\(1rem\\,var\\(--size\\)\\,3rem\\)\\]\\/9 {
1474214742 font-size: clamp(1rem, var(--size), 3rem);
14743- line-height: var(--line-height -9);
14743+ line-height: var(--leading -9);
1474414744 }
1474514745
1474614746 .text-\\[larger\\]\\/6 {
1474714747 font-size: larger;
14748- line-height: var(--line-height -6);
14748+ line-height: var(--leading -6);
1474914749 }
1475014750
1475114751 .text-\\[xx-large\\]\\/6 {
1475214752 font-size: xx-large;
14753- line-height: var(--line-height -6);
14753+ line-height: var(--leading -6);
1475414754 }
1475514755
1475614756 .text-sm\\/6 {
1475714757 font-size: var(--text-sm);
14758- line-height: var(--line-height -6);
14758+ line-height: var(--leading -6);
1475914759 }
1476014760
1476114761 .text-sm\\/\\[4px\\] {
0 commit comments