@@ -145,6 +145,22 @@ <h2 id="border" class="border-b-1 border-b-solid border-gray-200 py-5 font-bold"
145145 </ div >
146146 </ div >
147147 </ div >
148+ <!-- border-radius -->
149+ < h2 id ="border-radius " class ="border-b-1 border-b-solid border-gray-200 py-5 font-bold "> border-radius</ h2 >
150+ < div class ="row my-5 justify-between ">
151+ < div class ="col-2 text-c " v-for ="item in borderRadius ">
152+ < div class ="w-16 h-16 border mx-auto " :class ="`rounded-${item}` "> {{item}}</ div >
153+ < p class ="my-5 "> .rounded-{{item}}</ p >
154+ </ div >
155+ </ div >
156+ <!-- box-shadow -->
157+ < h2 id ="border-radius " class ="border-b-1 border-b-solid border-gray-200 py-5 font-bold "> box-shadow</ h2 >
158+ < div class ="row my-5 ">
159+ < div class ="col-3 text-c " v-for ="item in boxShadow ">
160+ < div class ="w-16 h-16 mx-auto " :class ="`shadow-${item}` "> </ div >
161+ < p class ="my-5 "> .shadow-{{item}}</ p >
162+ </ div >
163+ </ div >
148164 </ div >
149165 < div class ="sidebar col-3 ">
150166 < div >
@@ -172,8 +188,8 @@ <h3 class="font-bold pl-2 text-2xl mt-5">Category</h3>
172188 'font-size' ,
173189 'font-weight' ,
174190 'border' ,
175- 'radius' ,
176- 'shadows ' ,
191+ 'border- radius' ,
192+ 'box-shadow ' ,
177193 'alignment' ,
178194 'gutter' ,
179195 'display' ,
@@ -301,7 +317,9 @@ <h3 class="font-bold pl-2 text-2xl mt-5">Category</h3>
301317 borderStyle : [ 'solid' , 'dashed' , 'dotted' , 'double' , 'none' ] ,
302318 borderDirection : [ 't' , 'r' , 'b' , 'l' ] ,
303319 borderColor : [ 'pink-500' , 'purple-500' , 'indigo-500' , 'blue-500' , 'yellow-500' , 'orange-500' ]
304- }
320+ } ,
321+ borderRadius : [ "none" , "sm" , "default" , "lg" , "full" ] ,
322+ boxShadow : [ 'default' , 'md' , 'lg' , 'xl' , '2xl' , 'inner' , 'outline' , 'none' ]
305323 }
306324 } )
307325</ script >
0 commit comments