Skip to content

Commit 2b3afef

Browse files
committed
Adds missing rounded md values
1 parent 2ad48d5 commit 2b3afef

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

source/docs/border-radius.blade.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,26 @@ features:
101101
"border-top-left-radius: .25rem;\nborder-bottom-left-radius: .25rem;",
102102
"Apply the default border radius to the left corners of an element.",
103103
],
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+
],
104124
[
105125
'.rounded-t-lg',
106126
"border-top-left-radius: .5rem;\nborder-top-right-radius: .5rem;",
@@ -201,6 +221,26 @@ features:
201221
'border-bottom-left-radius: .25rem;',
202222
"Apply the default border radius to the bottom left corner of an element.",
203223
],
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+
],
204244
[
205245
'.rounded-tl-lg',
206246
'border-top-left-radius: .5rem;',
@@ -372,6 +412,7 @@ By default Tailwind provides five border radius size utilities. You can change,
372412
- 'sm': '.125rem',
373413
- default: '.25rem',
374414
+ default: '4px',
415+
- 'md': '.375rem',
375416
- 'lg': '.5rem',
376417
- 'full': '9999px',
377418
+ 'large': '12px',

0 commit comments

Comments
 (0)