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

Flex size support #15

Merged
merged 9 commits into from
Feb 18, 2023
Prev Previous commit
Next Next commit
fix(flex): update documentation for flex size selectors
  • Loading branch information
lievenjanssen committed Feb 15, 2023
commit 79de952a2333babe257260f50ec31d5c080549fd
10 changes: 5 additions & 5 deletions src/fxlayout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@
@include mix.layout-gap-classes($from, $to, $gapUnits, $includeSelectorsForMediaSizes)
}

/// Includes selectors for attributes which can be used to add a gap to elements in a flex container
/// Includes selectors for classes which can be used to add a gap to elements in a flex container
///
/// @param {number} $from
/// Will start generating selectors from $from $gapUnits
/// Will start generating selectors from $from, $from can also be used as a value list to generate selectors for every value in $from
/// @param {number} $to
/// Will generate selectors until including $to $gapUnits
/// Will generate selectors until including $to
/// @param {string} $increment
/// Will generate selectors in increments of $increment
/// @param {bool} $includeSelectorsForMediaSizes
Expand Down Expand Up @@ -89,9 +89,9 @@
/// Includes selectors for attributes which can be used to add a gap to elements in a flex container
///
/// @param {number} $from
/// Will start generating selectors from $from $gapUnits
/// Will start generating selectors from $from, $from can also be used as a value list to generate selectors for every value in $from
/// @param {number} $to
/// Will generate selectors until including $to $gapUnits
/// Will generate selectors until including $to
/// @param {string} $increment
/// Will generate selectors in increments of $increment
/// @param {bool} $includeSelectorsForMediaSizes
Expand Down
2 changes: 1 addition & 1 deletion src/lib/flex-size-attributes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/// Includes selectors for attributes which can be used to add a gap to elements in a flex container
///
/// @param {number} $from
/// Will start generating selectors from $from
/// Will start generating selectors from $from, $from can also be used as a value list to generate selectors for every value in $from
/// @param {number} $to
/// Will generate selectors until including $to
/// @param {string} $increment
Expand Down
2 changes: 1 addition & 1 deletion src/lib/flex-size-classes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/// Includes selectors for classes which can be used to add a gap to elements in a flex container
///
/// @param {number} $from
/// Will start generating selectors from $from
/// Will start generating selectors from $from, $from can also be used as a value list to generate selectors for every value in $from
/// @param {number} $to
/// Will generate selectors until including $to
/// @param {string} $increment
Expand Down