Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix apostrophes #39

Merged
merged 1 commit into from
Nov 1, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/docs/adding-new-utilities.blade.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ If you'd like to create responsive versions of your own utilities based on the b
}
```

Tailwind will intelligently group the responsive versions into it's existing media queries which are output at the very end of the stylesheet. This ensures that any responsive utilities will always take precedence over unprefixed utilities.
Tailwind will intelligently group the responsive versions into its existing media queries which are output at the very end of the stylesheet. This ensures that any responsive utilities will always take precedence over unprefixed utilities.

The above code would generate CSS that looks something like this:

Expand Down
14 changes: 7 additions & 7 deletions docs/source/docs/flexbox-flex-grow-shrink.blade.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ title: "Flex, Grow, & Shrink - Flexbox"
<tr>
<td class="p-2 border-t border-smoke font-mono text-xs text-purple-dark">.flex-initial</td>
<td class="p-2 border-t border-smoke font-mono text-xs text-blue-dark">flex: initial;</td>
<td class="p-2 border-t border-smoke text-sm text-grey-darker">Allow a flex item to shrink but not grow, taking into account it's initial size.</td>
<td class="p-2 border-t border-smoke text-sm text-grey-darker">Allow a flex item to shrink but not grow, taking into account its initial size.</td>
</tr>
<tr>
<td class="p-2 border-t border-smoke-light font-mono text-xs text-purple-dark">.flex-1</td>
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">flex: 1;</td>
<td class="p-2 border-t border-smoke-light text-sm text-grey-darker">Allow a flex item to grow and shrink as needed, ignoring it's initial size.</td>
<td class="p-2 border-t border-smoke-light text-sm text-grey-darker">Allow a flex item to grow and shrink as needed, ignoring its initial size.</td>
</tr>
<tr>
<td class="p-2 border-t border-smoke-light font-mono text-xs text-purple-dark">.flex-auto</td>
<td class="p-2 border-t border-smoke-light font-mono text-xs text-blue-dark">flex: auto;</td>
<td class="p-2 border-t border-smoke-light text-sm text-grey-darker">Allow a flex item to grow and shrink, taking into account it's initial size.</td>
<td class="p-2 border-t border-smoke-light text-sm text-grey-darker">Allow a flex item to grow and shrink, taking into account its initial size.</td>
</tr>
<tr>
<td class="p-2 border-t border-smoke-light font-mono text-xs text-purple-dark">.flex-none</td>
Expand Down Expand Up @@ -72,7 +72,7 @@ title: "Flex, Grow, & Shrink - Flexbox"

### Initial <span class="ml-2 font-semibold text-slate-light text-sm uppercase tracking-wide">Default</span>

Use `.flex-initial` to allow a flex item to shrink but not grow, taking into account it's initial size:
Use `.flex-initial` to allow a flex item to shrink but not grow, taking into account its initial size:

@component('_partials.code-sample')
<p class="text-sm text-slate-light mb-1">Items don't grow when there's extra space</p>
Expand Down Expand Up @@ -124,7 +124,7 @@ Use `.flex-initial` to allow a flex item to shrink but not grow, taking into acc

### Flex 1

Use `.flex-1` to allow a flex item to grow and shrink as needed, ignoring it's initial size:
Use `.flex-1` to allow a flex item to grow and shrink as needed, ignoring its initial size:

@component('_partials.code-sample')
<p class="text-sm text-slate-light mb-1">Default behavior</p>
Expand Down Expand Up @@ -169,7 +169,7 @@ Use `.flex-1` to allow a flex item to grow and shrink as needed, ignoring it's i

### Auto

Use `.flex-auto` to allow a flex item to grow and shrink, taking into account it's initial size:
Use `.flex-auto` to allow a flex item to grow and shrink, taking into account its initial size:

@component('_partials.code-sample')
<p class="text-sm text-slate-light mb-1">Default behavior</p>
Expand Down Expand Up @@ -294,7 +294,7 @@ Use `.flex-no-shrink` to prevent a flex item from shrinking:
Item that can shrink if needed
</div>
<div class="flex-no-shrink text-slate-dark text-center bg-smoke-dark px-4 py-2 m-2">
Item that cannot shrink below it's initial size
Item that cannot shrink below its initial size
</div>
<div class="flex-shrink text-slate text-center bg-smoke px-4 py-2 m-2">
Item that can shrink if needed
Expand Down
8 changes: 4 additions & 4 deletions docs/source/docs/flexbox.blade.md
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ Use `.content-around` to distribute lines in a flex container such that there is

### 1

Use `.flex-1` to allow a flex item to grow and shrink as needed, ignoring it's initial size:
Use `.flex-1` to allow a flex item to grow and shrink as needed, ignoring its initial size:

@component('_partials.code-sample')
<p class="text-sm text-slate-light mb-1">Default behavior</p>
Expand Down Expand Up @@ -452,7 +452,7 @@ Use `.flex-1` to allow a flex item to grow and shrink as needed, ignoring it's i

### Auto

Use `.flex-auto` to allow a flex item to grow and shrink, taking into account it's initial size:
Use `.flex-auto` to allow a flex item to grow and shrink, taking into account its initial size:

@component('_partials.code-sample')
<p class="text-sm text-slate-light mb-1">Default behavior</p>
Expand Down Expand Up @@ -515,7 +515,7 @@ Use `.flex-none` to prevent a flex item from growing or shrinking:

### Initial

Use `.flex-initial` to allow a flex item to shrink but not grow, taking into account it's initial size *(this is also the default behavior)*:
Use `.flex-initial` to allow a flex item to shrink but not grow, taking into account its initial size *(this is also the default behavior)*:

@component('_partials.code-sample')
<p class="text-sm text-slate-light mb-1">Items don't grow when there's extra space</p>
Expand Down Expand Up @@ -637,7 +637,7 @@ Use `.flex-no-shrink` to prevent a flex item from shrinking:
Item that can shrink if needed
</div>
<div class="flex-no-shrink text-slate-dark text-center bg-smoke-dark px-4 py-2 m-2">
Item that cannot shrink below it's initial size
Item that cannot shrink below its initial size
</div>
<div class="flex-shrink text-slate text-center bg-smoke px-4 py-2 m-2">
Item that can shrink if needed
Expand Down
2 changes: 1 addition & 1 deletion docs/source/docs/visibility.blade.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Use `.visible` to make an element visible. This will typically be used as a rese

### Invisible

Use `.invisible` to hide an element, but still maintain it's space.
Use `.invisible` to hide an element, but still maintain its space.

@component('_partials.code-sample', ['class' => 'flex justify-center'])
<div class="invisible bg-smoke w-24 h-24 rounded-full"></div>
Expand Down