@@ -18,22 +18,22 @@ features:
18
18
] ,
19
19
[
20
20
'.rounded-sm',
21
- 'border-radius: .125rem;',
21
+ 'border-radius: 0 .125rem;',
22
22
"Apply a small border radius to all corners of an element.",
23
23
] ,
24
24
[
25
25
'.rounded',
26
- 'border-radius: .25rem;',
26
+ 'border-radius: 0 .25rem;',
27
27
"Apply the default border radius to all corners of an element.",
28
28
] ,
29
29
[
30
30
'.rounded-md',
31
- 'border-radius: .375rem;',
31
+ 'border-radius: 0 .375rem;',
32
32
"Apply a medium border radius to all corners of an element.",
33
33
] ,
34
34
[
35
35
'.rounded-lg',
36
- 'border-radius: .5rem;',
36
+ 'border-radius: 0 .5rem;',
37
37
"Apply a large border radius to all corners of an element.",
38
38
] ,
39
39
[
@@ -63,62 +63,82 @@ features:
63
63
] ,
64
64
[
65
65
'.rounded-t-sm',
66
- "border-top-left-radius: .125rem;\nborder-top-right-radius: .125rem;",
66
+ "border-top-left-radius: 0 .125rem;\nborder-top-right-radius: 0 .125rem;",
67
67
"Apply a small border radius to the top corners of an element.",
68
68
] ,
69
69
[
70
70
'.rounded-r-sm',
71
- "border-top-right-radius: .125rem;\nborder-bottom-right-radius: .125rem;",
71
+ "border-top-right-radius: 0 .125rem;\nborder-bottom-right-radius: 0 .125rem;",
72
72
"Apply a small border radius to the right corners of an element.",
73
73
] ,
74
74
[
75
75
'.rounded-b-sm',
76
- "border-bottom-right-radius: .125rem;\nborder-bottom-left-radius: .125rem;",
76
+ "border-bottom-right-radius: 0 .125rem;\nborder-bottom-left-radius: 0 .125rem;",
77
77
"Apply a small border radius to the bottom corners of an element.",
78
78
] ,
79
79
[
80
80
'.rounded-l-sm',
81
- "border-top-left-radius: .125rem;\nborder-bottom-left-radius: .125rem;",
81
+ "border-top-left-radius: 0 .125rem;\nborder-bottom-left-radius: 0 .125rem;",
82
82
"Apply a small border radius to the left corners of an element.",
83
83
] ,
84
84
[
85
85
'.rounded-t',
86
- "border-top-left-radius: .25rem;\nborder-top-right-radius: .25rem;",
86
+ "border-top-left-radius: 0 .25rem;\nborder-top-right-radius: 0 .25rem;",
87
87
"Apply the default border radius to the top corners of an element.",
88
88
] ,
89
89
[
90
90
'.rounded-r',
91
- "border-top-right-radius: .25rem;\nborder-bottom-right-radius: .25rem;",
91
+ "border-top-right-radius: 0 .25rem;\nborder-bottom-right-radius: 0 .25rem;",
92
92
"Apply the default border radius to the right corners of an element.",
93
93
] ,
94
94
[
95
95
'.rounded-b',
96
- "border-bottom-right-radius: .25rem;\nborder-bottom-left-radius: .25rem;",
96
+ "border-bottom-right-radius: 0 .25rem;\nborder-bottom-left-radius: 0 .25rem;",
97
97
"Apply the default border radius to the bottom corners of an element.",
98
98
] ,
99
99
[
100
100
'.rounded-l',
101
- "border-top-left-radius: .25rem;\nborder-bottom-left-radius: .25rem;",
101
+ "border-top-left-radius: 0 .25rem;\nborder-bottom-left-radius: 0 .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: 0.375rem;\nborder-top-right-radius: 0.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: 0.375rem;\nborder-bottom-right-radius: 0.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: 0.375rem;\nborder-bottom-left-radius: 0.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: 0.375rem;\nborder-bottom-left-radius: 0.375rem;",
122
+ "Apply a medium border radius to the left corners of an element.",
123
+ ] ,
104
124
[
105
125
'.rounded-t-lg',
106
- "border-top-left-radius: .5rem;\nborder-top-right-radius: .5rem;",
126
+ "border-top-left-radius: 0 .5rem;\nborder-top-right-radius: 0 .5rem;",
107
127
"Apply a large border radius to the top corners of an element.",
108
128
] ,
109
129
[
110
130
'.rounded-r-lg',
111
- "border-top-right-radius: .5rem;\nborder-bottom-right-radius: .5rem;",
131
+ "border-top-right-radius: 0 .5rem;\nborder-bottom-right-radius: 0 .5rem;",
112
132
"Apply a large border radius to the right corners of an element.",
113
133
] ,
114
134
[
115
135
'.rounded-b-lg',
116
- "border-bottom-right-radius: .5rem;\nborder-bottom-left-radius: .5rem;",
136
+ "border-bottom-right-radius: 0 .5rem;\nborder-bottom-left-radius: 0 .5rem;",
117
137
"Apply a large border radius to the bottom corners of an element.",
118
138
] ,
119
139
[
120
140
'.rounded-l-lg',
121
- "border-top-left-radius: .5rem;\nborder-bottom-left-radius: .5rem;",
141
+ "border-top-left-radius: 0 .5rem;\nborder-bottom-left-radius: 0 .5rem;",
122
142
"Apply a large border radius to the left corners of an element.",
123
143
] ,
124
144
[
@@ -163,62 +183,82 @@ features:
163
183
] ,
164
184
[
165
185
'.rounded-tl-sm',
166
- 'border-top-left-radius: .125rem;',
186
+ 'border-top-left-radius: 0 .125rem;',
167
187
"Apply a small border radius to the top left corner of an element.",
168
188
] ,
169
189
[
170
190
'.rounded-tr-sm',
171
- 'border-top-right-radius: .125rem;',
191
+ 'border-top-right-radius: 0 .125rem;',
172
192
"Apply a small border radius to the top right corner of an element.",
173
193
] ,
174
194
[
175
195
'.rounded-br-sm',
176
- 'border-bottom-right-radius: .125rem;',
196
+ 'border-bottom-right-radius: 0 .125rem;',
177
197
"Apply a small border radius to the bottom right corner of an element.",
178
198
] ,
179
199
[
180
200
'.rounded-bl-sm',
181
- 'border-bottom-left-radius: .125rem;',
201
+ 'border-bottom-left-radius: 0 .125rem;',
182
202
"Apply a small border radius to the bottom left corner of an element.",
183
203
] ,
184
204
[
185
205
'.rounded-tl',
186
- 'border-top-left-radius: .25rem;',
206
+ 'border-top-left-radius: 0 .25rem;',
187
207
"Apply the default border radius to the top left corner of an element.",
188
208
] ,
189
209
[
190
210
'.rounded-tr',
191
- 'border-top-right-radius: .25rem;',
211
+ 'border-top-right-radius: 0 .25rem;',
192
212
"Apply the default border radius to the top right corner of an element.",
193
213
] ,
194
214
[
195
215
'.rounded-br',
196
- 'border-bottom-right-radius: .25rem;',
216
+ 'border-bottom-right-radius: 0 .25rem;',
197
217
"Apply the default border radius to the bottom right corner of an element.",
198
218
] ,
199
219
[
200
220
'.rounded-bl',
201
- 'border-bottom-left-radius: .25rem;',
221
+ 'border-bottom-left-radius: 0 .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: 0.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: 0.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: 0.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: 0.375rem;',
242
+ "Apply a medium border radius to the bottom left corner of an element.",
243
+ ] ,
204
244
[
205
245
'.rounded-tl-lg',
206
- 'border-top-left-radius: .5rem;',
246
+ 'border-top-left-radius: 0 .5rem;',
207
247
"Apply a large border radius to the top left corner of an element.",
208
248
] ,
209
249
[
210
250
'.rounded-tr-lg',
211
- 'border-top-right-radius: .5rem;',
251
+ 'border-top-right-radius: 0 .5rem;',
212
252
"Apply a large border radius to the top right corner of an element.",
213
253
] ,
214
254
[
215
255
'.rounded-br-lg',
216
- 'border-bottom-right-radius: .5rem;',
256
+ 'border-bottom-right-radius: 0 .5rem;',
217
257
"Apply a large border radius to the bottom right corner of an element.",
218
258
] ,
219
259
[
220
260
'.rounded-bl-lg',
221
- 'border-bottom-left-radius: .5rem;',
261
+ 'border-bottom-left-radius: 0 .5rem;',
222
262
"Apply a large border radius to the bottom left corner of an element.",
223
263
] ,
224
264
[
@@ -369,10 +409,11 @@ By default Tailwind provides five border radius size utilities. You can change,
369
409
370
410
@component ('_ partials.customized-config', [ 'key' => 'theme.borderRadius'] )
371
411
'none': '0',
372
- - 'sm': '.125rem',
373
- - default: '.25rem',
412
+ - 'sm': '0 .125rem',
413
+ - default: '0 .25rem',
374
414
+ default: '4px',
375
- - 'lg': '.5rem',
415
+ - 'md': '0.375rem',
416
+ - 'lg': '0.5rem',
376
417
- 'full': '9999px',
377
418
+ 'large': '12px',
378
419
@endcomponent
0 commit comments