@@ -26,7 +26,7 @@ Use `flex-initial` to allow a flex item to shrink but not grow, taking into acco
26
26
27
27
``` html
28
28
<div class =" flex" >
29
- <div class =" flex-none w-14 h-14 " >
29
+ <div class =" flex-none w-14 ... " >
30
30
01
31
31
</div >
32
32
<div class =" **flex-initial** w-64 ..." >
@@ -52,7 +52,7 @@ Use `flex-1` to allow a flex item to grow and shrink as needed, ignoring its ini
52
52
53
53
``` html
54
54
<div class =" flex" >
55
- <div class =" flex-none ..." >
55
+ <div class =" flex-none w-14 ..." >
56
56
01
57
57
</div >
58
58
<div class =" **flex-1** w-64 ..." >
@@ -78,7 +78,7 @@ Use `flex-auto` to allow a flex item to grow and shrink, taking into account its
78
78
79
79
``` html
80
80
<div class =" flex ..." >
81
- <div class =" flex-none ..." >
81
+ <div class =" flex-none w-14 ..." >
82
82
01
83
83
</div >
84
84
<div class =" **flex-auto** w-64 ..." >
@@ -97,12 +97,12 @@ Use `flex-none` to prevent a flex item from growing or shrinking:
97
97
``` html {{ example: { resizable: true } }}
98
98
<div class =" flex gap-4 text-white text-sm font-bold font-mono leading-6 bg-stripes-indigo rounded-lg" >
99
99
<div class =" flex-none last:pr-8 sm:last:pr-0" >
100
- <div class =" p-4 w-14 h-14 rounded-lg flex items-center justify-center bg-indigo-300 dark:bg-indigo-800 dark:text-indigo-400 " >
100
+ <div class =" p-4 w-14 h-14 rounded-lg flex items-center justify-center bg-indigo-500 " >
101
101
01
102
102
</div >
103
103
</div >
104
104
<div class =" flex-none last:pr-8 sm:last:pr-0" >
105
- <div class =" p-4 w-72 rounded-lg flex items-center justify-center bg-indigo-500 shadow-lg" >
105
+ <div class =" p-4 w-32 rounded-lg flex items-center justify-center bg-indigo-500 shadow-lg" >
106
106
02
107
107
</div >
108
108
</div >
@@ -116,10 +116,10 @@ Use `flex-none` to prevent a flex item from growing or shrinking:
116
116
117
117
``` html
118
118
<div class =" flex ..." >
119
- <div class =" flex-none w-14 h -14 ..." >
119
+ <div class =" ** flex-none** w -14 ..." >
120
120
01
121
121
</div >
122
- <div class =" **flex-none** ..." >
122
+ <div class =" **flex-none** w-32 ..." >
123
123
02
124
124
</div >
125
125
<div class =" flex-1 ..." >
0 commit comments