Skip to content

Commit edfa3e4

Browse files
updated doc comments
1 parent 7487dc7 commit edfa3e4

27 files changed

+97
-12
lines changed

src/Utilities/_config/backdrop-filter.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
///
2-
/// Backdrop Filters
2+
/// Backdrop Filter
3+
///
34
/// The backdrop-filter property is used to apply
45
/// a graphical effect to the area behind an element.
56
///

src/Utilities/_config/bg-colors.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
///
2-
/// Bg Colors
2+
/// Background Colors
3+
///
4+
/// The background-color property sets
5+
/// the background color of an element. The background of
6+
/// an element is the total size of the element,
7+
/// including padding and border (but not the margin).
38
///
49
$bg-colors: (
510
// class name, value

src/Utilities/_config/border-radius.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
///
22
/// Border Radius
33
///
4+
/// The border-radius property defines
5+
/// the radius of the element's corners.
6+
///
47
$border-radius: (
58
// class name (prefix), property
69
"radius-": "border-radius"

src/Utilities/_config/border-style.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
///
22
/// Border Styles
3+
///
4+
/// The border-style property sets
5+
/// the style of an element's four borders.
36
///
47
$border-styles: (
58
// class name, value

src/Utilities/_config/border.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
///
2-
/// Borders (width)
2+
/// Border
3+
///
4+
/// The border property is a shorthand property for
5+
/// border-width, border-style and border-color.
36
///
47
$borders:(
58
// class name (prefix), property

src/Utilities/_config/cursors.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
///
2-
/// Cursors
2+
/// Cursor
3+
///
4+
/// The cursor property specifies the mouse cursor
5+
/// to be displayed when pointing over an element.
36
///
47
$cursors: (
58
// class name, value

src/Utilities/_config/display-filter.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
///
2-
/// Display Filters
2+
/// Filter
3+
///
4+
/// The filter property defines visual effects
5+
/// (like blur and saturation) to an element (often <img>).
36
///
47
$display-filters: (
58
// class name, property, value

src/Utilities/_config/display.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
///
2-
/// Display Properties
2+
/// Display
3+
///
4+
/// The display property specifies the
5+
/// display behavior (the type of rendering box) of an element.
36
///
47
$display-properties: (
58
// class name, value

src/Utilities/_config/flex-direction.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
///
2-
/// Direction of the flexible items (flex-direction)
2+
/// Flex Direction
3+
///
4+
/// The flex-direction property specifies
5+
/// the direction of the flexible items.
36
///
47
$flex-directions: (
58
// class name, value

src/Utilities/_config/flex-grow.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
///
22
/// Flex Grow
3+
///
4+
/// The flex-grow property specifies how much the item
5+
/// will grow relative to the rest of the flexible items
6+
/// inside the same container.
37
///
48
$flex-grow: (
59
("flex-grow", 1),

0 commit comments

Comments
 (0)