Skip to content

Commit 1615f02

Browse files
authored
Revert "Move page descriptions into yaml"
1 parent 7ca5a00 commit 1615f02

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

+416
-80
lines changed

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

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

6+
# Adding New Utilities
7+
78
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.
89

910
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: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
---
22
extends: _layouts.documentation
3-
title: "Background Color"
4-
description: "Utilities for controlling an element's background color."
3+
title: "Backgrounds"
54
---
65

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+
712
@include('_partials.feature-badges', [
813
'responsive' => true,
914
'customizable' => true,

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

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

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+
712
@include('_partials.feature-badges', [
813
'responsive' => true,
914
'customizable' => false,

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

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

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+
712
@include('_partials.feature-badges', [
813
'responsive' => true,
914
'customizable' => false,

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

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

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+
712
@include('_partials.feature-badges', [
813
'responsive' => true,
914
'customizable' => true,

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

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

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+
712
@include('_partials.feature-badges', [
813
'responsive' => true,
914
'customizable' => true,

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

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

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+
712
@include('_partials.feature-badges', [
813
'responsive' => true,
914
'customizable' => false,

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

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

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+
712
@include('_partials.feature-badges', [
813
'responsive' => true,
914
'customizable' => true,

docs/source/docs/colors.blade.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
---
22
extends: _layouts.documentation
33
title: "Colors"
4-
description: null
54
---
65

6+
# Colors
7+
78
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.
89

910
## Default color palette

docs/source/docs/configuration.blade.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
---
22
extends: _layouts.documentation
33
title: "Configuration"
4-
description: null
54
---
65

6+
# Configuration
7+
78
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.
89

910
## Introducing the Tailwind config

0 commit comments

Comments
 (0)