Skip to content

Commit

Permalink
fix: Add missing front matter close
Browse files Browse the repository at this point in the history
  • Loading branch information
zastrow committed Oct 26, 2020
1 parent 3bf77f0 commit eda7c59
Show file tree
Hide file tree
Showing 24 changed files with 71 additions and 52 deletions.
2 changes: 2 additions & 0 deletions systems/color/_docs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ section: Systems
@each $key, $val in $colors {
/* ---
section: Systems
---
<tr>
<td><svg height="18" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 0,18, 18,18 18,0z" fill="#{$val}" /></svg></td>
Expand All @@ -31,6 +32,7 @@ section: Systems

/* ---
section: Systems
---
</tbody>
</table>
Expand Down
3 changes: 3 additions & 0 deletions systems/color/background/_utility.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@if settings('utility-background-color') {
/* ---
section: Systems
---
### Background Color Utility Classes
Expand All @@ -20,6 +21,7 @@ section: Systems
@each $key, $val in $colors {
/* ---
section: Systems
---
<tr>
<td><svg height="18" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 0,18, 18,18 18,0z" fill="#{$val}" /></svg></td>
Expand All @@ -41,6 +43,7 @@ section: Systems

/* ---
section: Systems
---
</tbody>
</table>
Expand Down
1 change: 1 addition & 0 deletions systems/z-index/_utility.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ section: Systems

/* ---
section: Systems
---
</tbody>
</table>
Expand Down
1 change: 1 addition & 0 deletions tools/antialiased/_mixin.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Anti-aliased Mixin
section: Tools
---
Adds font smoothing properties.
Expand Down
1 change: 1 addition & 0 deletions tools/antialiased/_utility.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Anti-aliased Utility
section: Utilities
---
Smooths the font on the level of the pixel.
Expand Down
1 change: 1 addition & 0 deletions tools/clearfix/_mixin.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Clearfix Mixin
section: Tools
---
**Use**
```scss
Expand Down
1 change: 1 addition & 0 deletions tools/clearfix/_utility.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Clearfix Utility
section: Utilities
---
Prevents an element from collapsing due to margins for floated contents.
Expand Down
1 change: 1 addition & 0 deletions tools/delink/_mixin.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Delink Mixin
section: Tools
---
Removes default link styles.
Expand Down
1 change: 1 addition & 0 deletions tools/delink/_utility.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Delink Utility
section: Utilities
---
Removes link styles from and element.
Expand Down
1 change: 1 addition & 0 deletions tools/delist/_mixin.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Delist Mixin
section: Tools
---
Removes default list styles.
Expand Down
1 change: 1 addition & 0 deletions tools/delist/_utility.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Delist Utility
section: Utilities
---
Removes the list styles from ordered and unordered lists.
Expand Down
1 change: 1 addition & 0 deletions tools/loop-mq/_mixin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Loop Media Query Mixin
name: loop-mq-mixin
section: Tools
---
Auto-generates media queries for looping content.
Expand Down
1 change: 1 addition & 0 deletions tools/negative/_function.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Negative Function
section: Tools
---
Turns a positive number into a negative number. This comes in handy when a variable is passed in, so `-$value` becomes explicit `negative($value)`.
Expand Down
1 change: 1 addition & 0 deletions tools/print-mq/_mixin.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Print Mixin
section: Tools
---
Provides two functionalities. The first is to hide the element when printed.
Expand Down
1 change: 1 addition & 0 deletions tools/ratio/_function.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Ratio Function
section: Tools
---
Creates a ratio percentage value when given a height value and width value.
Expand Down
1 change: 1 addition & 0 deletions tools/remify/_function.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Remify Function
section: Tools
---
Converts a number to a rem value.
Expand Down
1 change: 1 addition & 0 deletions tools/stringify/_function.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Stringify Function
section: Tools
---
Converts a number to a string.
Expand Down
1 change: 1 addition & 0 deletions tools/strip-units/_function.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Strip Units Function
section: Tools
---
Removes the unit of number. This is handy for maths in mixins/functions, for example if you need to check to values of two numbers. If one is a `em` value and the other is a `rem` value, you have to strip the units to accomplish the math.
Expand Down
1 change: 1 addition & 0 deletions tools/unbuttonize/_mixin.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Unbuttonize Mixin
section: Tools
---
Removes styles added by default to button elements. For when something should semantically be a button, but isn't buttony in appearance.
Expand Down
1 change: 1 addition & 0 deletions tools/unbuttonize/_utility.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Unbuttonize Utility
section: Utilities
---
Removes styles added by default to button elements.
Expand Down
1 change: 1 addition & 0 deletions tools/visually-hidden/_mixin.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* ---
title: Visually Hidden Mixin
section: Tools
---
Hides an element visually, but still accessible to screen readers.
Expand Down
49 changes: 23 additions & 26 deletions utilities/position/_utility.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,36 @@

@if settings(utility-position) {
/* ---
title: Position Utility
section: Utilities
---
<table>
<thead>
<tr>
<th>Class Name</th>
<th>Property</th>
</thead>
<tbody>
*/
title: Position Utility
section: Utilities
---
<table>
<thead>
<tr>
<th>Class Name</th>
<th>Property</th>
</thead>
<tbody>
*/

// NOTE: This @each loop is only for document generation
@each $value in $util-position-values {
/* ---
section: Utilities
---
<tr>
<td>`.#{settings(prefix)}-position-#{$value}`</td>
<td>`position: #{$value}`</td>
</tr>
*/
section: Utilities
---
<tr>
<td>`.#{settings(prefix)}-position-#{$value}`</td>
<td>`position: #{$value}`</td>
</tr>
*/
}

/* ---
section: Utilities
---
</tbody>
</table>
*/
section: Utilities
---
</tbody>
</table>
*/

// Load the mixin
@include sparkle-position;
Expand Down
49 changes: 23 additions & 26 deletions utilities/text-align/_utility.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,36 @@

@if settings(utility-text-align) {
/* ---
title: Text-Align Utility
section: Utilities
---
<table>
<thead>
<tr>
<th>Class Name</th>
<th>Property</th>
</thead>
<tbody>
*/
title: Text-Align Utility
section: Utilities
---
<table>
<thead>
<tr>
<th>Class Name</th>
<th>Property</th>
</thead>
<tbody>
*/

// NOTE: This @each loop is only for document generation
@each $value in $util-text-values {
/* ---
section: Utilities
---
<tr>
<td>`.#{settings(prefix)}-text-#{$value}`</td>
<td>`text-align: #{$value}`</td>
</tr>
*/
section: Utilities
---
<tr>
<td>`.#{settings(prefix)}-text-#{$value}`</td>
<td>`text-align: #{$value}`</td>
</tr>
*/
}

/* ---
section: Utilities
---
</tbody>
</table>
*/
section: Utilities
---
</tbody>
</table>
*/

// Load the mixin
@include sparkle-text-align;
Expand Down
1 change: 1 addition & 0 deletions utilities/visually-hidden/_utility.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
/* ---
title: Visually Hidden Utility
section: Utilities
---
Use the `#{settings(prefix)}-visually-hidden` to hide content that should be hidden from the page visually, but still accessible to those using keyboard or screen reader controls.
Expand Down

0 comments on commit eda7c59

Please sign in to comment.