Skip to content

Commit 1c2b24e

Browse files
committed
Move description into yaml.
1 parent 2aa0761 commit 1c2b24e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+80
-416
lines changed

docs/source/docs/adding-new-utilities.blade.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
extends: _layouts.documentation
33
title: "Adding New Utilities"
4+
description: null
45
---
56

6-
# Adding New Utilities
7-
87
Although Tailwind provides a pretty comprehensive set of utility classes out of the box, you're inevitably going to run into situations where you need to add a few of your own.
98

109
Deciding on the best way to extend a framework can be paralyzing, so here's some best practices and tools to help you add your own utilities "the Tailwind way."

docs/source/docs/background-color.blade.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
---
22
extends: _layouts.documentation
3-
title: "Backgrounds"
3+
title: "Background Color"
4+
description: "Utilities for controlling an element's background color."
45
---
56

6-
# Background Color
7-
8-
<div class="text-xl text-slate-light mb-4">
9-
Utilities for controlling an element's background color.
10-
</div>
11-
127
@include('_partials.feature-badges', [
138
'responsive' => true,
149
'customizable' => true,

docs/source/docs/background-position.blade.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
---
22
extends: _layouts.documentation
33
title: "Background Position"
4+
description: "Utilities for controlling the position of an element's background image."
45
---
56

6-
# Background Position
7-
8-
<div class="text-xl text-slate-light mb-4">
9-
Utilities for controlling the position of an element's background image.
10-
</div>
11-
127
@include('_partials.feature-badges', [
138
'responsive' => true,
149
'customizable' => false,

docs/source/docs/background-size.blade.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
---
22
extends: _layouts.documentation
33
title: "Background Size"
4+
description: "Utilities for controlling the background size of an element's background image."
45
---
56

6-
# Background Size
7-
8-
<div class="text-xl text-slate-light mb-4">
9-
Utilities for controlling the background size of an element's background image.
10-
</div>
11-
127
@include('_partials.feature-badges', [
138
'responsive' => true,
149
'customizable' => false,

docs/source/docs/border-color.blade.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
---
22
extends: _layouts.documentation
33
title: "Border Color"
4+
description: "Utilities for controlling the color of an element's borders."
45
---
56

6-
# Border Color
7-
8-
<div class="text-xl text-slate-light mb-4">
9-
Utilities for controlling the color of an element's borders.
10-
</div>
11-
127
@include('_partials.feature-badges', [
138
'responsive' => true,
149
'customizable' => true,

docs/source/docs/border-radius.blade.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
---
22
extends: _layouts.documentation
33
title: "Border Radius"
4+
description: "Utilities for controlling the border radius of an element."
45
---
56

6-
# Border Radius
7-
8-
<div class="text-xl text-slate-light mb-4">
9-
Utilities for controlling the border radius of an element.
10-
</div>
11-
127
@include('_partials.feature-badges', [
138
'responsive' => true,
149
'customizable' => true,

docs/source/docs/border-style.blade.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
---
22
extends: _layouts.documentation
33
title: "Border Style"
4+
description: "Utilities for controlling the style of an element's borders."
45
---
56

6-
# Border Style
7-
8-
<div class="text-xl text-slate-light mb-4">
9-
Utilities for controlling the style of an element's borders.
10-
</div>
11-
127
@include('_partials.feature-badges', [
138
'responsive' => true,
149
'customizable' => false,

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
---
22
extends: _layouts.documentation
33
title: "Border Width"
4+
description: "Utilities for controlling the width an element's borders."
45
---
56

6-
# Border Width
7-
8-
<div class="text-xl text-slate-light mb-4">
9-
Utilities for controlling the width an element's borders.
10-
</div>
11-
127
@include('_partials.feature-badges', [
138
'responsive' => true,
149
'customizable' => true,

docs/source/docs/colors.blade.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
extends: _layouts.documentation
33
title: "Colors"
4+
description: null
45
---
56

6-
# Colors
7-
87
Developing an organized, consistent and beautiful color palette is critical to the design success of a project. Tailwind provides a fantastic color system that makes this very easy to accomplish.
98

109
## Default color palette

docs/source/docs/configuration.blade.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
extends: _layouts.documentation
33
title: "Configuration"
4+
description: null
45
---
56

6-
# Configuration
7-
87
Tailwind's defining feature is its ability to be customized. We understand that no two projects are the same, so why should the CSS framework you use be? Tailwind provides developers with a helpful set of front-end conventions, while still leaving room for adjustments where appropriate. This is all done using the Tailwind config file.
98

109
## Introducing the Tailwind config

0 commit comments

Comments
 (0)