Skip to content

Commit 12cd392

Browse files
committed
Fix Reinink's mess
1 parent 9c0d18a commit 12cd392

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/source/docs/overflow.blade.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,37 +33,37 @@ title: "Overflow"
3333
<tbody class="align-baseline">
3434
<tr>
3535
<td class="p-2 border-t border-smoke font-mono text-xs text-purple-dark">.overflow-visible</td>
36-
<td class="p-2 border-t border-smoke font-mono text-xs text-blue-dark">overflow: 'visible';</td>
36+
<td class="p-2 border-t border-smoke font-mono text-xs text-blue-dark">overflow: visible;</td>
3737
<td class="p-2 border-t border-smoke text-sm text-grey-darker">Prevent content within an element from being clipped.</td>
3838
</tr>
3939
<tr>
4040
<td class="p-2 border-t border-smoke-light font-mono text-xs text-purple-dark">.overflow-auto</td>
41-
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">overflow: 'auto';</td>
41+
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">overflow: auto;</td>
4242
<td class="p-2 border-t border-smoke-light text-sm text-grey-darker">Add scrollbars to an element if needed.</td>
4343
</tr>
4444
<tr>
4545
<td class="p-2 border-t border-smoke-light font-mono text-xs text-purple-dark">.overflow-hidden</td>
46-
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">overflow: 'hidden';</td>
46+
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">overflow: hidden;</td>
4747
<td class="p-2 border-t border-smoke-light text-sm text-grey-darker">Clip any content that overflows the element.</td>
4848
</tr>
4949
<tr>
5050
<td class="p-2 border-t border-smoke-light font-mono text-xs text-purple-dark">.mask</td>
51-
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">overflow: 'hidden';</td>
51+
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">overflow: hidden;</td>
5252
<td class="p-2 border-t border-smoke-light text-sm text-grey-darker">Clip any content that overflows the element. Alias of <code>.overflow-hidden</code>.</td>
5353
</tr>
5454
<tr>
5555
<td class="p-2 border-t border-smoke-light font-mono text-xs text-purple-dark">.overflow-x-scroll</td>
56-
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">overflow-x: 'auto'</td>
56+
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">overflow-x: auto;</td>
5757
<td class="p-2 border-t border-smoke-light text-sm text-grey-darker">Allow horizontal scrolling if needed.</td>
5858
</tr>
5959
<tr>
6060
<td class="p-2 border-t border-smoke-light font-mono text-xs text-purple-dark">.overflow-y-scroll</td>
61-
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">overflow-y: 'auto'</td>
61+
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">overflow-y: auto;</td>
6262
<td class="p-2 border-t border-smoke-light text-sm text-grey-darker">Allow horizontal scrolling if needed.</td>
6363
</tr>
6464
<tr>
6565
<td class="p-2 border-t border-smoke-light font-mono text-xs text-purple-dark">.overflow-scroll</td>
66-
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">overflow: 'scroll';</td>
66+
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">overflow: scroll;</td>
6767
<td class="p-2 border-t border-smoke-light text-sm text-grey-darker">Add scrollbars to an element.</td>
6868
</tr>
6969
</tbody>

0 commit comments

Comments
 (0)