@@ -101,6 +101,26 @@ features:
101
101
"border-top-left-radius: .25rem;\nborder-bottom-left-radius: .25rem;",
102
102
"Apply the default border radius to the left corners of an element.",
103
103
] ,
104
+ [
105
+ '.rounded-t-md',
106
+ "border-top-left-radius: .375rem;\nborder-top-right-radius: .375rem;",
107
+ "Apply a medium border radius to the top corners of an element.",
108
+ ] ,
109
+ [
110
+ '.rounded-r-md',
111
+ "border-top-right-radius: .375rem;\nborder-bottom-right-radius: .375rem;",
112
+ "Apply a medium border radius to the right corners of an element.",
113
+ ] ,
114
+ [
115
+ '.rounded-b-md',
116
+ "border-bottom-right-radius: .375rem;\nborder-bottom-left-radius: .375rem;",
117
+ "Apply a medium border radius to the bottom corners of an element.",
118
+ ] ,
119
+ [
120
+ '.rounded-l-md',
121
+ "border-top-left-radius: .375rem;\nborder-bottom-left-radius: .375rem;",
122
+ "Apply a medium border radius to the left corners of an element.",
123
+ ] ,
104
124
[
105
125
'.rounded-t-lg',
106
126
"border-top-left-radius: .5rem;\nborder-top-right-radius: .5rem;",
@@ -201,6 +221,26 @@ features:
201
221
'border-bottom-left-radius: .25rem;',
202
222
"Apply the default border radius to the bottom left corner of an element.",
203
223
] ,
224
+ [
225
+ '.rounded-tl-md',
226
+ 'border-top-left-radius: .375rem;',
227
+ "Apply a medium border radius to the top left corner of an element.",
228
+ ] ,
229
+ [
230
+ '.rounded-tr-md',
231
+ 'border-top-right-radius: .375rem;',
232
+ "Apply a medium border radius to the top right corner of an element.",
233
+ ] ,
234
+ [
235
+ '.rounded-br-md',
236
+ 'border-bottom-right-radius: .375rem;',
237
+ "Apply a medium border radius to the bottom right corner of an element.",
238
+ ] ,
239
+ [
240
+ '.rounded-bl-md',
241
+ 'border-bottom-left-radius: .375rem;',
242
+ "Apply a medium border radius to the bottom left corner of an element.",
243
+ ] ,
204
244
[
205
245
'.rounded-tl-lg',
206
246
'border-top-left-radius: .5rem;',
@@ -372,6 +412,7 @@ By default Tailwind provides five border radius size utilities. You can change,
372
412
- 'sm': '.125rem',
373
413
- default: '.25rem',
374
414
+ default: '4px',
415
+ - 'md': '.375rem',
375
416
- 'lg': '.5rem',
376
417
- 'full': '9999px',
377
418
+ 'large': '12px',
0 commit comments