Skip to content

Commit ad4622f

Browse files
committed
Remove code tags from inside sizing table descriptions
Causes a 1px increase in height which is just enough to make the table not look obviously scrollable at the fixed height we are currently using.
1 parent e4b32c4 commit ad4622f

File tree

6 files changed

+62
-62
lines changed

6 files changed

+62
-62
lines changed

docs/source/docs/height.blade.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,87 +16,87 @@ features:
1616
[
1717
'.h-1',
1818
'height: 0.25rem;',
19-
"Set the element's height to <code>0.25rem</code>.",
19+
"Set the element's height to 0.25rem.",
2020
],
2121
[
2222
'.h-2',
2323
'height: 0.5rem;',
24-
"Set the element's height to <code>0.5rem</code>.",
24+
"Set the element's height to 0.5rem.",
2525
],
2626
[
2727
'.h-3',
2828
'height: 0.75rem;',
29-
"Set the element's height to <code>0.75rem</code>.",
29+
"Set the element's height to 0.75rem.",
3030
],
3131
[
3232
'.h-4',
3333
'height: 1rem;',
34-
"Set the element's height to <code>1rem</code>.",
34+
"Set the element's height to 1rem.",
3535
],
3636
[
3737
'.h-6',
3838
'height: 1.5rem;',
39-
"Set the element's height to <code>1.5rem</code>.",
39+
"Set the element's height to 1.5rem.",
4040
],
4141
[
4242
'.h-8',
4343
'height: 2rem;',
44-
"Set the element's height to <code>2rem</code>.",
44+
"Set the element's height to 2rem.",
4545
],
4646
[
4747
'.h-10',
4848
'height: 2.5rem;',
49-
"Set the element's height to <code>2.5rem</code>.",
49+
"Set the element's height to 2.5rem.",
5050
],
5151
[
5252
'.h-12',
5353
'height: 3rem;',
54-
"Set the element's height to <code>3rem</code>.",
54+
"Set the element's height to 3rem.",
5555
],
5656
[
5757
'.h-16',
5858
'height: 4rem;',
59-
"Set the element's height to <code>4rem</code>.",
59+
"Set the element's height to 4rem.",
6060
],
6161
[
6262
'.h-24',
6363
'height: 6rem;',
64-
"Set the element's height to <code>6rem</code>.",
64+
"Set the element's height to 6rem.",
6565
],
6666
[
6767
'.h-32',
6868
'height: 8rem;',
69-
"Set the element's height to <code>8rem</code>.",
69+
"Set the element's height to 8rem.",
7070
],
7171
[
7272
'.h-48',
7373
'height: 12rem;',
74-
"Set the element's height to <code>12rem</code>.",
74+
"Set the element's height to 12rem.",
7575
],
7676
[
7777
'.h-64',
7878
'height: 16rem;',
79-
"Set the element's height to <code>16rem</code>.",
79+
"Set the element's height to 16rem.",
8080
],
8181
[
8282
'.h-auto',
8383
'height: auto;',
84-
"Set the element's height to <code>auto</code>.",
84+
"Set the element's height to auto.",
8585
],
8686
[
8787
'.h-px',
8888
'height: 1px;',
89-
"Set the element's height to <code>1px</code>.",
89+
"Set the element's height to 1px.",
9090
],
9191
[
9292
'.h-full',
9393
'height: 100%;',
94-
"Set the element's height to <code>100%</code>.",
94+
"Set the element's height to 100%.",
9595
],
9696
[
9797
'.h-screen',
9898
'height: 100vh;',
99-
"Set the element's height to <code>100vh</code>.",
99+
"Set the element's height to 100vh.",
100100
],
101101
]
102102
])

docs/source/docs/max-height.blade.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ features:
1616
[
1717
'.max-h-full',
1818
'max-height: 100%;',
19-
"Set the element's maximum height to <code>100%</code>.",
19+
"Set the element's maximum height to 100%.",
2020
],
2121
[
2222
'.max-h-screen',
2323
'max-height: 100vh;',
24-
"Set the element's maximum height to <code>100vh</code>.",
24+
"Set the element's maximum height to 100vh.",
2525
],
2626
]
2727
])

docs/source/docs/max-width.blade.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,52 +16,52 @@ features:
1616
[
1717
'.max-w-xs',
1818
'max-width: 20rem;',
19-
"Set the element's maximum width to <code>20rem</code>.",
19+
"Set the element's maximum width to 20rem.",
2020
],
2121
[
2222
'.max-w-sm',
2323
'max-width: 30rem;',
24-
"Set the element's maximum width to <code>30rem</code>.",
24+
"Set the element's maximum width to 30rem.",
2525
],
2626
[
2727
'.max-w-md',
2828
'max-width: 40rem;',
29-
"Set the element's maximum width to <code>40rem</code>.",
29+
"Set the element's maximum width to 40rem.",
3030
],
3131
[
3232
'.max-w-lg',
3333
'max-width: 50rem;',
34-
"Set the element's maximum width to <code>50rem</code>.",
34+
"Set the element's maximum width to 50rem.",
3535
],
3636
[
3737
'.max-w-xl',
3838
'max-width: 60rem;',
39-
"Set the element's maximum width to <code>60rem</code>.",
39+
"Set the element's maximum width to 60rem.",
4040
],
4141
[
4242
'.max-w-2xl',
4343
'max-width: 70rem;',
44-
"Set the element's maximum width to <code>70rem</code>.",
44+
"Set the element's maximum width to 70rem.",
4545
],
4646
[
4747
'.max-w-3xl',
4848
'max-width: 80rem;',
49-
"Set the element's maximum width to <code>80rem</code>.",
49+
"Set the element's maximum width to 80rem.",
5050
],
5151
[
5252
'.max-w-4xl',
5353
'max-width: 90rem;',
54-
"Set the element's maximum width to <code>90rem</code>.",
54+
"Set the element's maximum width to 90rem.",
5555
],
5656
[
5757
'.max-w-5xl',
5858
'max-width: 100rem;',
59-
"Set the element's maximum width to <code>100rem</code>.",
59+
"Set the element's maximum width to 100rem.",
6060
],
6161
[
6262
'.max-w-full',
6363
'max-width: 100%;',
64-
"Set the element's maximum width to <code>100%</code>.",
64+
"Set the element's maximum width to 100%.",
6565
],
6666
]
6767
])

docs/source/docs/min-height.blade.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ features:
1616
[
1717
'.min-h-0',
1818
'min-height: 0;',
19-
"Set the element's minimum height to <code>0</code>.",
19+
"Set the element's minimum height to 0.",
2020
],
2121
[
2222
'.min-h-full',
2323
'min-height: 100%;',
24-
"Set the element's minimum height to <code>100%</code>.",
24+
"Set the element's minimum height to 100%.",
2525
],
2626
[
2727
'.min-h-screen',
2828
'min-height: 100vh;',
29-
"Set the element's minimum height to <code>100vh</code>.",
29+
"Set the element's minimum height to 100vh.",
3030
],
3131
]
3232
])

docs/source/docs/min-width.blade.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ features:
1616
[
1717
'.min-w-0',
1818
'min-width: 0;',
19-
"Set the element's minimum width to <code>0</code>.",
19+
"Set the element's minimum width to 0.",
2020
],
2121
[
2222
'.min-w-full',
2323
'min-width: 100%;',
24-
"Set the element's minimum width to <code>100%</code>.",
24+
"Set the element's minimum width to 100%.",
2525
],
2626
]
2727
])

docs/source/docs/width.blade.md

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -16,142 +16,142 @@ features:
1616
[
1717
'.w-1',
1818
'width: 0.25rem;',
19-
"Set the element's width to <code>0.25rem</code>.",
19+
"Set the element's width to 0.25rem.",
2020
],
2121
[
2222
'.w-2',
2323
'width: 0.5rem;',
24-
"Set the element's width to <code>0.5rem</code>.",
24+
"Set the element's width to 0.5rem.",
2525
],
2626
[
2727
'.w-3',
2828
'width: 0.75rem;',
29-
"Set the element's width to <code>0.75rem</code>.",
29+
"Set the element's width to 0.75rem.",
3030
],
3131
[
3232
'.w-4',
3333
'width: 1rem;',
34-
"Set the element's width to <code>1rem</code>.",
34+
"Set the element's width to 1rem.",
3535
],
3636
[
3737
'.w-6',
3838
'width: 1.5rem;',
39-
"Set the element's width to <code>1.5rem</code>.",
39+
"Set the element's width to 1.5rem.",
4040
],
4141
[
4242
'.w-8',
4343
'width: 2rem;',
44-
"Set the element's width to <code>2rem</code>.",
44+
"Set the element's width to 2rem.",
4545
],
4646
[
4747
'.w-10',
4848
'width: 2.5rem;',
49-
"Set the element's width to <code>2.5rem</code>.",
49+
"Set the element's width to 2.5rem.",
5050
],
5151
[
5252
'.w-12',
5353
'width: 3rem;',
54-
"Set the element's width to <code>3rem</code>.",
54+
"Set the element's width to 3rem.",
5555
],
5656
[
5757
'.w-16',
5858
'width: 4rem;',
59-
"Set the element's width to <code>4rem</code>.",
59+
"Set the element's width to 4rem.",
6060
],
6161
[
6262
'.w-24',
6363
'width: 6rem;',
64-
"Set the element's width to <code>6rem</code>.",
64+
"Set the element's width to 6rem.",
6565
],
6666
[
6767
'.w-32',
6868
'width: 8rem;',
69-
"Set the element's width to <code>8rem</code>.",
69+
"Set the element's width to 8rem.",
7070
],
7171
[
7272
'.w-48',
7373
'width: 12rem;',
74-
"Set the element's width to <code>12rem</code>.",
74+
"Set the element's width to 12rem.",
7575
],
7676
[
7777
'.w-64',
7878
'width: 16rem;',
79-
"Set the element's width to <code>16rem</code>.",
79+
"Set the element's width to 16rem.",
8080
],
8181
[
8282
'.w-auto',
8383
'width: auto;',
84-
"Set the element's width to <code>auto</code>.",
84+
"Set the element's width to auto.",
8585
],
8686
[
8787
'.w-px',
8888
'width: 1px;',
89-
"Set the element's width to <code>1px</code>.",
89+
"Set the element's width to 1px.",
9090
],
9191
[
9292
'.w-1/2',
9393
'width: 50%;',
94-
"Set the element's width to <code>50%</code>.",
94+
"Set the element's width to 50%.",
9595
],
9696
[
9797
'.w-1/3',
9898
'width: 33.33333%;',
99-
"Set the element's width to <code>33.33333%</code>.",
99+
"Set the element's width to 33.33333%.",
100100
],
101101
[
102102
'.w-2/3',
103103
'width: 66.66667%;',
104-
"Set the element's width to <code>66.66667%</code>.",
104+
"Set the element's width to 66.66667%.",
105105
],
106106
[
107107
'.w-1/4',
108108
'width: 25%;',
109-
"Set the element's width to <code>25%</code>.",
109+
"Set the element's width to 25%.",
110110
],
111111
[
112112
'.w-3/4',
113113
'width: 75%;',
114-
"Set the element's width to <code>75%</code>.",
114+
"Set the element's width to 75%.",
115115
],
116116
[
117117
'.w-1/5',
118118
'width: 20%;',
119-
"Set the element's width to <code>20%</code>.",
119+
"Set the element's width to 20%.",
120120
],
121121
[
122122
'.w-2/5',
123123
'width: 40%;',
124-
"Set the element's width to <code>40%</code>.",
124+
"Set the element's width to 40%.",
125125
],
126126
[
127127
'.w-3/5',
128128
'width: 60%;',
129-
"Set the element's width to <code>60%</code>.",
129+
"Set the element's width to 60%.",
130130
],
131131
[
132132
'.w-4/5',
133133
'width: 80%;',
134-
"Set the element's width to <code>80%</code>.",
134+
"Set the element's width to 80%.",
135135
],
136136
[
137137
'.w-1/6',
138138
'width: 16.66667%;',
139-
"Set the element's width to <code>16.66667%</code>.",
139+
"Set the element's width to 16.66667%.",
140140
],
141141
[
142142
'.w-5/6',
143143
'width: 83.33333%;',
144-
"Set the element's width to <code>83.33333%</code>.",
144+
"Set the element's width to 83.33333%.",
145145
],
146146
[
147147
'.w-full',
148148
'width: 100%;',
149-
"Set the element's width to <code>100%</code>.",
149+
"Set the element's width to 100%.",
150150
],
151151
[
152152
'.w-screen',
153153
'width: 100vw;',
154-
"Set the element's width to <code>100vw</code>.",
154+
"Set the element's width to 100vw.",
155155
],
156156
]
157157
])

0 commit comments

Comments
 (0)